Mikrotik szykuje coś ciekawego: https://box.mikrotik.com/seafhttp/files … f/S009.pdf
Switch w obudowie z RB5009, dodatkowo wersja z POE.
Link nie działa.
Nie jesteś zalogowany. Proszę się zalogować lub zarejestrować.
eko.one.pl → Posty przez DarioX7
Mikrotik szykuje coś ciekawego: https://box.mikrotik.com/seafhttp/files … f/S009.pdf
Switch w obudowie z RB5009, dodatkowo wersja z POE.
Link nie działa.
w3t3ran napisał/a:Potrzebuję dobrać do mojego Flinta przełącznik z co najmniej 8-oma portami 2.5Gb POE (nie musi być zarządzalny, ani pod kontrolą OpenWrt) mile widziane SFP+ i oczywiście jak najmniejsze zużycie prądu.
Możesz np kupić XikeStor SKS3200-8E2X-P. Jest on oparty na układzie MaxLiner MxL86282S. Jest tam interfejs webowy z prostym zarządzaniem.
Ma niskie zużycie prądu.
Czy w tym webowym GUI da się zmienić domyślny adres IP? Czytałem, że w podobnych switch-ach był z tym problem.
Inne dla każdego AP jeżeli chcesz mieć fast roaming.
Czyli opcja nr 2?
Mam jeszcze nurtujące pytanie - czy dla każdego SSID powinna być inna wartość nasid ?
Opcja 1:
AP1 ma 3 sieci: XYZ, XYW, XYU i nasid dla wszystkich np "AP1"
AP2 ma 3 sieci: XYZ, XYW, XYU i nasid dla wszystkich np "AP2"
czy
Opcja 2:
AP1 ma 3 sieci: XYZ, XYW, XYU i nasid "AP1_XYZ", "AP1_XYW", "AP1_XYU"
AP2 ma 3 sieci: XYZ, XYW, XYU i nasid "AP2_XYZ", "AP2_XYW", "AP2_XYU"
Zabiłeś klina z tym AP11000! Wygląda na to, że zaraz będzie. Ubiquity z Wi-fi 7 jest za ok. 800, więc Cudy podejrzewam <500 PLN. Masz rację, poczekam.
I chyba w końcu jest dostępny
allegro.pl/oferta/18063452227
Cena na dzień tego posta to 553 PLN
EDIT: poprawiony link
BTW - ktoś próbował na sowich AP odwrotnego odpytywania nazwy hostów ?
https://forum.openwrt.org/t/dumb-ap-ass … /153358/34
Dzięki @Cezary, zbędne usługi wyłączone, AP dalej śmiga. Może będę testował twój apcontroller.
Dokładnie tak, jeżeli nie chcesz dhcp na żadnej sieci.
PS. Albo w ogóle nie instaluj dnsmasq...
1. Czyli co, odinstalować dnsmasq i wywalić całą sekcje z /etc/config/dhcp ?
2. Co teoretycznie tracę po odinstalowaniu dnsmasq, dla AP, ?
Na strronie OpenWrt https://openwrt.org/docs/guide-user/net … /bridgedap znalazłem wzmiankę:
Note: It is not recommended or necessary to disable the dnsmasq service. Disabling the dnsmasq service will stop the DHCP server, but may result in it becoming reactivated should the service be started again such as during a sysupgrade event. The only way to guarantee that the DHCP server will be disabled is to set the ignore flag as shown above.
Likewise, the firewall can be left as-is and it does not need to be disabled.
Cześć.
Dziś zmęczyłem przejście na moich AP z firmware OpenWrt 25.12.
Teraz staram sie optymalizować z ustawieniami jako "dumb AP".
Chiałbym się zapytać, potwierdzić czy takie ustawienia są poprawne w sekcji dhcp przy AP:
config dhcp 'lan'
option interface 'lan'
option ignore '1'
config dhcp 'iot'
option interface 'iot'
option ignore '1'
config dhcp 'guest'
option interface 'guest'
option ignore '1'
config dhcp 'proxmox'
option interface 'proxmox'
option ignore '1'Dla każdej sieci VLAN powinienem ignorować dhcp ? wtedy w logach nie mam błedów.
Ja dodaję, jest on w pakiecie ekooneplconfigs dla x86/64, wiec jak go chcesz to dodaj sobie pakiet.
Oczywiście, jak się domyślam dodatkowo dodać pakiety:
parted losetup resize2fs f2fs-tools e2fsprogs bo inaczej nie zadziała ten skrypt
@Cezary, czy dla 25.12 będziesz dodawać skrypt resize-root.sh dla x86/x64 ? Czy może przy budowaniu obrazu w ASU, nie dodaje tego skryptu ?
Wykłada się na sekcji firewall, w moim przypadku chciałem wyczyścić domyślny firewall i wstawić wszystko z mojego obecnego.
########################################
# CLEAN ALL CONFIGS
########################################
uci -q delete firewall
########################################
# DEFAULTS
########################################
uci add firewall defaults >/dev/null
uci set firewall.@defaults[-1].input='REJECT'
uci set firewall.@defaults[-1].output='ACCEPT'
uci set firewall.@defaults[-1].forward='REJECT'
uci set firewall.@defaults[-1].synflood_protect='1'
uci set firewall.@defaults[-1].flow_offloading='1'
########################################
# ZONE: lan
########################################
uci add firewall zone >/dev/null
uci set firewall.@zone[-1].name='lan'
uci set firewall.@zone[-1].input='ACCEPT'
uci set firewall.@zone[-1].output='ACCEPT'
uci set firewall.@zone[-1].forward='ACCEPT'
uci set firewall.@zone[-1].network='lan'
########################################
# ZONE: wan
########################################
uci add firewall zone >/dev/null
uci set firewall.@zone[-1].name='wan'
uci set firewall.@zone[-1].input='REJECT'
uci set firewall.@zone[-1].output='ACCEPT'
uci set firewall.@zone[-1].forward='REJECT'
uci set firewall.@zone[-1].masq='1'
uci set firewall.@zone[-1].mtu_fix='1'
uci add_list firewall.@zone[-1].network='wan'
uci add_list firewall.@zone[-1].network='pppoe0'
########################################
# FORWARDING: lan to wan
########################################
uci add firewall forwarding >/dev/null
uci set firewall.@forwarding[-1].src='lan'
uci set firewall.@forwarding[-1].dest='wan'
########################################
# RULES: WAN to ROUTER
########################################
# Allow-DHCP-Renew
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='Allow-DHCP-Renew'
uci set firewall.@rule[-1].src='wan'
uci set firewall.@rule[-1].proto='udp'
uci set firewall.@rule[-1].dest_port='68'
uci set firewall.@rule[-1].family='ipv4'
uci set firewall.@rule[-1].target='ACCEPT'
# Allow-Ping
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='Allow-Ping'
uci set firewall.@rule[-1].src='wan'
uci set firewall.@rule[-1].proto='icmp'
uci set firewall.@rule[-1].icmp_type='echo-request'
uci set firewall.@rule[-1].family='ipv4'
uci set firewall.@rule[-1].target='ACCEPT'
# Allow-IGMP
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='Allow-IGMP'
uci set firewall.@rule[-1].src='wan'
uci set firewall.@rule[-1].proto='igmp'
uci set firewall.@rule[-1].family='ipv4'
uci set firewall.@rule[-1].target='ACCEPT'
# Allow-DHCPv6
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='Allow-DHCPv6'
uci set firewall.@rule[-1].src='wan'
uci set firewall.@rule[-1].proto='udp'
uci set firewall.@rule[-1].dest_port='546'
uci set firewall.@rule[-1].family='ipv6'
uci set firewall.@rule[-1].target='ACCEPT'
# Allow-MLD
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='Allow-MLD'
uci set firewall.@rule[-1].src='wan'
uci set firewall.@rule[-1].proto='icmp'
uci set firewall.@rule[-1].src_ip='fe80::/10'
uci add_list firewall.@rule[-1].icmp_type='130/0'
uci add_list firewall.@rule[-1].icmp_type='131/0'
uci add_list firewall.@rule[-1].icmp_type='132/0'
uci add_list firewall.@rule[-1].icmp_type='143/0'
uci set firewall.@rule[-1].family='ipv6'
uci set firewall.@rule[-1].target='ACCEPT'
# Allow-ICMPv6-Input
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='Allow-ICMPv6-Input'
uci set firewall.@rule[-1].src='wan'
uci set firewall.@rule[-1].proto='icmp'
uci add_list firewall.@rule[-1].icmp_type='echo-request'
uci add_list firewall.@rule[-1].icmp_type='echo-reply'
uci add_list firewall.@rule[-1].icmp_type='destination-unreachable'
uci add_list firewall.@rule[-1].icmp_type='packet-too-big'
uci add_list firewall.@rule[-1].icmp_type='time-exceeded'
uci add_list firewall.@rule[-1].icmp_type='bad-header'
uci add_list firewall.@rule[-1].icmp_type='unknown-header-type'
uci add_list firewall.@rule[-1].icmp_type='router-solicitation'
uci add_list firewall.@rule[-1].icmp_type='neighbour-solicitation'
uci add_list firewall.@rule[-1].icmp_type='router-advertisement'
uci add_list firewall.@rule[-1].icmp_type='neighbour-advertisement'
uci set firewall.@rule[-1].limit='1000/sec'
uci set firewall.@rule[-1].family='ipv6'
uci set firewall.@rule[-1].target='ACCEPT'
# Allow-ICMPv6-Forward
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='Allow-ICMPv6-Forward'
uci set firewall.@rule[-1].src='wan'
uci set firewall.@rule[-1].dest='*'
uci set firewall.@rule[-1].proto='icmp'
uci add_list firewall.@rule[-1].icmp_type='echo-request'
uci add_list firewall.@rule[-1].icmp_type='echo-reply'
uci add_list firewall.@rule[-1].icmp_type='destination-unreachable'
uci add_list firewall.@rule[-1].icmp_type='packet-too-big'
uci add_list firewall.@rule[-1].icmp_type='time-exceeded'
uci add_list firewall.@rule[-1].icmp_type='bad-header'
uci add_list firewall.@rule[-1].icmp_type='unknown-header-type'
uci set firewall.@rule[-1].limit='1000/sec'
uci set firewall.@rule[-1].family='ipv6'
uci set firewall.@rule[-1].target='ACCEPT'
# Allow-IPSec-ESP
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='Allow-IPSec-ESP'
uci set firewall.@rule[-1].src='wan'
uci set firewall.@rule[-1].dest='lan'
uci set firewall.@rule[-1].proto='esp'
uci set firewall.@rule[-1].target='ACCEPT'
# Allow-ISAKMP
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='Allow-ISAKMP'
uci set firewall.@rule[-1].src='wan'
uci set firewall.@rule[-1].dest='lan'
uci set firewall.@rule[-1].dest_port='500'
uci set firewall.@rule[-1].proto='udp'
uci set firewall.@rule[-1].target='ACCEPT'
########################################
# REDIRECTS
########################################
# rTorrentPRO_56895
uci add firewall redirect >/dev/null
uci set firewall.@redirect[-1].name='rTorrentPRO_56895'
uci set firewall.@redirect[-1].src='wan'
uci add_list firewall.@redirect[-1].proto='tcp'
uci add_list firewall.@redirect[-1].proto='udp'
uci set firewall.@redirect[-1].src_dport='56895'
uci set firewall.@redirect[-1].dest='lan'
uci set firewall.@redirect[-1].dest_ip='10.25.10.10'
uci set firewall.@redirect[-1].dest_port='56895'
uci set firewall.@redirect[-1].target='DNAT'
# rTorrentPRO_6881
uci add firewall redirect >/dev/null
uci set firewall.@redirect[-1].name='rTorrentPRO_6881'
uci set firewall.@redirect[-1].src='wan'
uci set firewall.@redirect[-1].src_dport='6881'
uci set firewall.@redirect[-1].dest='lan'
uci set firewall.@redirect[-1].dest_ip='10.25.10.10'
uci set firewall.@redirect[-1].dest_port='6881'
uci set firewall.@redirect[-1].proto='udp'
uci set firewall.@redirect[-1].target='DNAT'
########################################
# ZONE: proxmox
########################################
uci add firewall zone >/dev/null
uci set firewall.@zone[-1].name='proxmox'
uci set firewall.@zone[-1].input='ACCEPT'
uci set firewall.@zone[-1].output='ACCEPT'
uci set firewall.@zone[-1].forward='ACCEPT'
uci set firewall.@zone[-1].network='proxmox'
########################################
# FORWARDING: proxmox to wan
########################################
uci add firewall forwarding >/dev/null
uci set firewall.@forwarding[-1].src='proxmox'
uci set firewall.@forwarding[-1].dest='wan'
########################################
# RULE: WireGuard port
########################################
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='wireguard'
uci set firewall.@rule[-1].src='wan'
uci set firewall.@rule[-1].proto='udp'
uci set firewall.@rule[-1].dest_port='55055'
uci set firewall.@rule[-1].target='ACCEPT'
########################################
# ZONE: wg
########################################
uci add firewall zone >/dev/null
uci set firewall.@zone[-1].name='wg'
uci set firewall.@zone[-1].input='ACCEPT'
uci set firewall.@zone[-1].output='ACCEPT'
uci set firewall.@zone[-1].forward='ACCEPT'
uci set firewall.@zone[-1].masq='1'
uci set firewall.@zone[-1].network='wg0'
########################################
# FORWARDINGS: wg
########################################
uci add firewall forwarding >/dev/null
uci set firewall.@forwarding[-1].src='wg'
uci set firewall.@forwarding[-1].dest='wan'
uci add firewall forwarding >/dev/null
uci set firewall.@forwarding[-1].src='wan'
uci set firewall.@forwarding[-1].dest='wg'
uci add firewall forwarding >/dev/null
uci set firewall.@forwarding[-1].src='wg'
uci set firewall.@forwarding[-1].dest='lan'
uci add firewall forwarding >/dev/null
uci set firewall.@forwarding[-1].src='lan'
uci set firewall.@forwarding[-1].dest='wg'
########################################
# RULES: PROXMOX connect DAREK
########################################
# proxmox to darek
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='rule_proxmox_to_darek'
uci set firewall.@rule[-1].src='proxmox'
uci set firewall.@rule[-1].dest='lan'
uci set firewall.@rule[-1].src_ip='10.25.40.10'
uci add_list firewall.@rule[-1].dest_ip='10.25.10.21'
uci add_list firewall.@rule[-1].dest_ip='10.25.10.27'
uci add_list firewall.@rule[-1].proto='tcp'
uci add_list firewall.@rule[-1].proto='udp'
uci add_list firewall.@rule[-1].proto='icmp'
uci set firewall.@rule[-1].target='ACCEPT'
# darek to proxmox
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='rule_darek_to_proxmox'
uci set firewall.@rule[-1].src='lan'
uci set firewall.@rule[-1].dest='proxmox'
uci add_list firewall.@rule[-1].src_ip='10.25.10.21'
uci add_list firewall.@rule[-1].src_ip='10.25.10.27'
uci set firewall.@rule[-1].dest_ip='10.25.40.10'
uci add_list firewall.@rule[-1].proto='tcp'
uci add_list firewall.@rule[-1].proto='udp'
uci add_list firewall.@rule[-1].proto='icmp'
uci set firewall.@rule[-1].target='ACCEPT'
########################################
# ZONE: guest
########################################
uci add firewall zone >/dev/null
uci set firewall.@zone[-1].name='guest'
uci set firewall.@zone[-1].enabled='1'
uci set firewall.@zone[-1].input='REJECT'
uci set firewall.@zone[-1].output='ACCEPT'
uci set firewall.@zone[-1].forward='REJECT'
uci set firewall.@zone[-1].network='guest'
########################################
# FORWARDING: guest to wan
########################################
uci add firewall forwarding >/dev/null
uci set firewall.@forwarding[-1].name='guest to wan forward'
uci set firewall.@forwarding[-1].enabled='1'
uci set firewall.@forwarding[-1].src='guest'
uci set firewall.@forwarding[-1].dest='wan'
########################################
# RULE: guest DNS
########################################
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='rule_guest_dns'
uci set firewall.@rule[-1].src='guest'
uci set firewall.@rule[-1].dest_port='53'
uci add_list firewall.@rule[-1].proto='tcp'
uci add_list firewall.@rule[-1].proto='udp'
uci set firewall.@rule[-1].target='ACCEPT'
########################################
# RULE: guest DHCP
########################################
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='rule_guest_dhcp'
uci set firewall.@rule[-1].src='guest'
uci set firewall.@rule[-1].proto='udp'
uci set firewall.@rule[-1].src_port='67-68'
uci set firewall.@rule[-1].dest_port='67-68'
uci set firewall.@rule[-1].target='ACCEPT'
########################################
# RULE: guest DHCPv6
########################################
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='rule_guest_dhcpv6'
uci set firewall.@rule[-1].src='guest'
uci set firewall.@rule[-1].proto='udp'
uci set firewall.@rule[-1].src_ip='fe80::/10'
uci set firewall.@rule[-1].dest_ip='fe80::/10'
uci set firewall.@rule[-1].src_port='546-547'
uci set firewall.@rule[-1].dest_port='546-547'
uci set firewall.@rule[-1].family='ipv6'
uci set firewall.@rule[-1].target='ACCEPT'
########################################
# RULE: guest MLD
########################################
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='rule_guest_mld'
uci set firewall.@rule[-1].src='guest'
uci set firewall.@rule[-1].proto='icmp'
uci set firewall.@rule[-1].src_ip='fe80::/10'
uci set firewall.@rule[-1].family='ipv6'
uci add_list firewall.@rule[-1].icmp_type='130/0'
uci add_list firewall.@rule[-1].icmp_type='131/0'
uci add_list firewall.@rule[-1].icmp_type='132/0'
uci add_list firewall.@rule[-1].icmp_type='143/0'
uci set firewall.@rule[-1].target='ACCEPT'
########################################
# RULE: guest ICMPv6 Input
########################################
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='rule_guest_icmpv6_input'
uci set firewall.@rule[-1].src='guest'
uci set firewall.@rule[-1].proto='icmp'
uci set firewall.@rule[-1].limit='1000/sec'
uci set firewall.@rule[-1].family='ipv6'
uci add_list firewall.@rule[-1].icmp_type='echo-request'
uci add_list firewall.@rule[-1].icmp_type='echo-reply'
uci add_list firewall.@rule[-1].icmp_type='destination-unreachable'
uci add_list firewall.@rule[-1].icmp_type='packet-too-big'
uci add_list firewall.@rule[-1].icmp_type='time-exceeded'
uci add_list firewall.@rule[-1].icmp_type='bad-header'
uci add_list firewall.@rule[-1].icmp_type='unknown-header-type'
uci add_list firewall.@rule[-1].icmp_type='router-solicitation'
uci add_list firewall.@rule[-1].icmp_type='neighbour-solicitation'
uci add_list firewall.@rule[-1].icmp_type='router-advertisement'
uci add_list firewall.@rule[-1].icmp_type='neighbour-advertisement'
uci set firewall.@rule[-1].target='ACCEPT'
########################################
# ZONE: iot
########################################
uci add firewall zone >/dev/null
uci set firewall.@zone[-1].name='iot'
uci set firewall.@zone[-1].input='ACCEPT'
uci set firewall.@zone[-1].output='ACCEPT'
uci set firewall.@zone[-1].forward='REJECT'
uci set firewall.@zone[-1].network='iot'
########################################
# FORWARDING: lan to iot
########################################
uci add firewall forwarding >/dev/null
uci set firewall.@forwarding[-1].src='lan'
uci set firewall.@forwarding[-1].dest='iot'
########################################
# FORWARDING: lan to proxmox
########################################
uci add firewall forwarding >/dev/null
uci set firewall.@forwarding[-1].src='lan'
uci set firewall.@forwarding[-1].dest='proxmox'
########################################
# RULE: guest to printer
########################################
uci add firewall rule >/dev/null
uci set firewall.@rule[-1].name='rule_guest_to_printer'
uci set firewall.@rule[-1].src='guest'
uci set firewall.@rule[-1].dest='lan'
uci set firewall.@rule[-1].dest_ip='10.25.10.9'
uci set firewall.@rule[-1].target='ACCEPT'
########################################
# REDIRECT: 20688 to 10.25.10.22:20688
########################################
uci add firewall redirect >/dev/null
uci set firewall.@redirect[-1].name='20688'
uci set firewall.@redirect[-1].src='wan'
uci set firewall.@redirect[-1].src_dport='20688'
uci set firewall.@redirect[-1].dest='lan'
uci set firewall.@redirect[-1].dest_ip='10.25.10.22'
uci set firewall.@redirect[-1].dest_port='20688'
uci set firewall.@redirect[-1].target='DNAT'
########################################
# COMMIT
########################################
uci commit firewall
Ale coś czuje, że dostanę ochrzań za takie udziwianie
.
Tak, możesz
Hmm, czy jest jakieś ograniczenie ilość znaków czy linii dla uci-defaults ?
Coś mi się wykłada, widze tylko że na czerwono, bez żandych informacji o błędach, przed budowaniem obrazu.
Cześć.
Chciałem sie dopytać, czy do skryptu dla uci-defaults mogę dać swoje ustawienia z /etc/config/network, dhcp, system itp? Oczywiście wszystko przeronbione na składnię UCI.
@nicefile myślę, że lepsze będzie Banana Pi BPI-R4 Pro https://www.cnx-software.com/2025/10/20 … 7-support/
(...) urządzenie ma już oficjalne buildy OpenWrt i ogólnie działa zgodnie z oczekiwaniami.(...)
Czy pisałeś na forum OpenWrt odnośnie oficjalnego wsparcia Renkforce RF-CAP-800 ?
Jednak przerobiłem, stwierdziłem, że za duże ryzyko. Ładnie wykryło typ chipu i zaciągam cały obraz.
Po prostu żyj dalej. W zależności od chipa (i producenta) linie mają pewną tolerancję i zdarza się że tak po prostu na 5v też zadziała. Jak nie zadzierała to cóż, kupujesz nową kostkę flash i robisz programamtor.
Tylko, że z tego Panasonic musi przeżyć, bo bez zawartości tego BIOS-u, będę miał duży przycisk do papieru. ![]()
Cześć.
Zakupiłem sobie programator CH341A z https://www.amazon.pl/dp/B0CGZQX9PM?ref … asin_title
Słyszałem, że trzeba przerobić płytkę by była zgodna z 3.3V układami, by nie spalić kostek
Ale znalazłem też film na YouTube, gdzie gość tłumaczy, że te napiecia na liniach danych zostaną obiżone przy podłaczeniu ukłądu IC (BIOS). https://www.youtube.com/watch?v=J8-Sh7DjiXw
Sprawdzałem tak samo multimetrem i na testowym flashu po starym Tp-Link TL-WR1043ND (cFeon Q64-104HIP). Tam tylko na pinie 6 dalej jest 5V (CLK), oraz na pinie nr 2 3.7V. A tak reszta jest w okolicy 3.3V
A musze odczytać, a następnie zaprogramować nowy BIOS do tabletu Panasonic Winbond 25Q128FVSQ.
Co robić, jak żyć ? ![]()
Czy AP, będzie oficjalnie wspierany w OpenWrt w przyszłości ?
Wygląda to obiecująco. Załadowałem wstępnie obraz initramfs.
Log z UART:
Format: Log Type - Time(microsec) - Message - Optional Info
Log Type: B - Since Boot(Power On Reset), D - Delta, S - Statistic
S - QC_IMAGE_VERSION_STRING=BOOT.BF.3.3.1-00148
S - IMAGE_VARIANT_STRING=HAABANAZA
S - OEM_IMAGE_VERSION_STRING=CRM
S - Boot Config, 0x000002e1
B - 201 - PBL, Start
B - 2734 - bootable_media_detect_entry, Start
B - 2880 - bootable_media_detect_success, Start
B - 2884 - elf_loader_entry, Start
B - 11373 - auth_hash_seg_entry, Start
B - 11616 - auth_hash_seg_exit, Start
B - 250130 - elf_segs_hash_verify_entry, Start
B - 310648 - PBL, End
B - 489769 - SBL1, Start
B - 568581 - GCC [RstStat:0x10, RstDbg:0x600000] WDog Stat : 0x4
B - 578371 - pm_device_init, Start
B - 760151 - PM_SET_VAL:Skip
D - 179523 - pm_device_init, Delta
B - 762378 - pm_driver_init, Start
D - 5307 - pm_driver_init, Delta
B - 768905 - clock_init, Start
D - 2104 - clock_init, Delta
B - 772931 - boot_flash_init, Start
D - 3995 - boot_flash_init, Delta
B - 780586 - boot_config_data_table_init, Start
D - 1006 - boot_config_data_table_init, Delta - (575 Bytes)
B - 790407 - Boot Setting : 0x00000618
B - 794159 - CDT version:2,Platform ID:8,Major ID:1,Minor ID:0,Subtype:8
B - 801052 - sbl1_ddr_set_params, Start
B - 804864 - CPR configuration: 0x30c
B - 808341 - cpr_init, Start
B - 811117 - Rail:0 Mode: 5 Voltage: 792000
B - 816332 - CL CPR settled at 744000mV
B - 819138 - Rail:1 Mode: 5 Voltage: 880000
B - 823347 - Rail:1 Mode: 7 Voltage: 896000
D - 16531 - cpr_init, Delta
B - 830210 - Pre_DDR_clock_init, Start
B - 834236 - Pre_DDR_clock_init, End
B - 837621 - DDR Type : PCDDR3
B - 843264 - do ddr sanity test, Start
D - 1037 - do ddr sanity test, Delta
B - 848113 - DDR: Start of HAL DDR Boot Training
B - 852749 - DDR: End of HAL DDR Boot Training
B - 858514 - DDR: Checksum to be stored on flash is -702814524
B - 868853 - Image Load, Start
D - 335317 - QSEE Image Loaded, Delta - (1374392 Bytes)
B - 1204262 - Image Load, Start
D - 61 - SEC Image Loaded, Delta - (0 Bytes)
B - 1211917 - Image Load, Start
D - 9760 - DEVCFG Image Loaded, Delta - (26008 Bytes)
B - 1221769 - Image Load, Start
D - 30988 - RPM Image Loaded, Delta - (106428 Bytes)
B - 1252818 - Image Load, Start
D - 142221 - APPSBL Image Loaded, Delta - (579192 Bytes)
B - 1395161 - QSEE Execution, Start
D - 61 - QSEE Execution, Delta
B - 1400987 - USB D+ check, Start
D - 0 - USB D+ check, Delta
B - 1407361 - SBL1, End
D - 919910 - SBL1, Delta
S - Flash Throughput, 4431 KB/s (2087267 Bytes, 471006 us)
S - DDR Frequency, 466 MHz
S - Core 0 Frequency, 1651 MHz
U-Boot 2016.01 (Nov 04 2020 - 16:18:16 +0800)
DRAM: smem ram ptable found: ver: 1 len: 4
sys led OK!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
1 GiB
NAND: ONFI device found
ID = 1580a1c2
Vendor = c2
Device = a1
SPI_ADDR_LEN=3
SF: Detected MX25U6435F with page size 256 Bytes, erase size 64 KiB, total 8 MiB
ipq_spi: page_size: 0x100, sector_size: 0x10000, size: 0x800000
136 MiB
MMC: sdhci: Node Not found, skipping initialization
PCI1 is not defined in the device tree
In: serial@78B3000
Out: serial@78B3000
Err: serial@78B3000
machid: 8010008
MMC Device 0 not found
eth2 MAC Address from ART is not valid
eth3 MAC Address from ART is not valid
eth4 MAC Address from ART is not valid
eth5 MAC Address from ART is not valid
Hit any key to stop autoboot: 0
Net: MAC0 addr:44:d1:fa:ac:8a:81
PHY ID1: 0x4d
PHY ID2: 0xd101
PHY ID1: 0x4d
PHY ID2: 0xd101
EDMA ver 1 hw init
Num rings - TxDesc:1 (0-0) TxCmpl:1 (7-7)
RxDesc:1 (15-15) RxFill:1 (7-7)
ipq807x_edma_alloc_rings: successfull
ipq807x_edma_setup_ring_resources: successfull
ipq807x_edma_configure_rings: successfull
ipq807x_edma_hw_init: successfull
eth0
IPQ807x# setenv ipaddr 192.168.1.1
IPQ807x# setenv serverip 192.168.1.2
IPQ807x# tftpboot openwrt-qualcommax-ipq807x-yuncore_ax880-initramfs-uImage.itb
ipq807x_eth_halt: done
Phy ops not mapped
Phy ops not mapped
Phy ops not mapped
Phy ops not mapped
eth0 PHY4 up Speed :1000 Full duplex
eth0 PHY5 up Speed :2500 Full duplex
ipq807x_eth_init: done
Using eth0 device
TFTP from server 192.168.1.2; our IP address is 192.168.1.1
Filename 'openwrt-qualcommax-ipq807x-yuncore_ax880-initramfs-uImage.itb'.
Load address: 0x44000000
Loading: *
Got TFTP_OACK: TFTP remote port: changes from 69 to 52832
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
####################
4.3 MiB/s
done
Bytes transferred = 21274476 (1449f6c hex)
ipq807x_eth_halt: done
IPQ807x# bootm
## Loading kernel from FIT Image at 44000000 ...
Using 'config@hk09' configuration
Trying 'kernel-1' kernel subimage
Description: ARM64 OpenWrt Linux-6.6.100
Type: Kernel Image
Compression: gzip compressed
Data Start: 0x440000e8
Data Size: 21220425 Bytes = 20.2 MiB
Architecture: AArch64
OS: Linux
Load Address: 0x41000000
Entry Point: 0x41000000
Hash algo: crc32
Hash value: 0f1dc652
Hash algo: sha1
Hash value: 160096d2fb2295e9b8fecd85b9e0fe9e47149e8e
Verifying Hash Integrity ... crc32+ sha1+ OK
## Loading fdt from FIT Image at 44000000 ...
Using 'config@hk09' configuration
Trying 'fdt-1' fdt subimage
Description: ARM64 OpenWrt yuncore_ax880 device tree blob
Type: Flat Device Tree
Compression: uncompressed
Data Start: 0x4543ce74
Data Size: 52147 Bytes = 50.9 KiB
Architecture: AArch64
Hash algo: crc32
Hash value: d0a19673
Hash algo: sha1
Hash value: 2c97f82edf557c11d8c6d7b32f392a7e50ebe3f1
Verifying Hash Integrity ... crc32+ sha1+ OK
Booting using the fdt blob at 0x4543ce74
Uncompressing Kernel Image ... OK
Loading Device Tree to 4a3f0000, end 4a3ffbb2 ... OK
fdt-fixup: unable to find compatible node
mtdids not defined, no default present
Could not find PCI in device tree
Using machid 0x8010008 from environment
Starting kernel ...
Jumping to AARCH64 kernel via monitor
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[ 0.000000] Linux version 6.6.100 (maciek@Maciek-HP) (aarch64-openwrt-linux-musl-gcc (OpenWrt GCC 13.3.0 r28921-acbd5676f7) 13.3.0, GNU ld (GNU Binutils) 2.42) #0 SMP Wed Jul 30 20:41:15 2025
[ 0.000000] Machine model: Yuncore AX880
[ 0.000000] OF: reserved mem: 0x0000000040000000..0x0000000040ffffff (16384 KiB) nomap non-reusable nss@40000000
[ 0.000000] OF: reserved mem: 0x000000004a400000..0x000000004a5fffff (2048 KiB) nomap non-reusable tzapp@4a400000
[ 0.000000] OF: reserved mem: 0x000000004a600000..0x000000004a9fffff (4096 KiB) nomap non-reusable bootloader@4a600000
[ 0.000000] OF: reserved mem: 0x000000004aa00000..0x000000004aafffff (1024 KiB) nomap non-reusable sbl@4aa00000
[ 0.000000] OF: reserved mem: 0x000000004ab00000..0x000000004abfffff (1024 KiB) nomap non-reusable smem@4ab00000
[ 0.000000] OF: reserved mem: 0x000000004ac00000..0x000000004affffff (4096 KiB) nomap non-reusable memory@4ac00000
[ 0.000000] OF: reserved mem: 0x000000004b000000..0x0000000050efffff (97280 KiB) nomap non-reusable wcnss@4b000000
[ 0.000000] OF: reserved mem: 0x0000000050f00000..0x0000000050ffffff (1024 KiB) nomap non-reusable q6_etr_dump@50f00000
[ 0.000000] OF: reserved mem: 0x0000000051000000..0x00000000510fffff (1024 KiB) nomap non-reusable m3_dump@51000000
[ 0.000000] OF: reserved mem: 0x0000000051200000..0x00000000512fffff (1024 KiB) nomap non-reusable ramoops@51200000
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000040000000-0x000000007fffffff]
[ 0.000000] DMA32 empty
[ 0.000000] Normal empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000040000000-0x0000000040ffffff]
[ 0.000000] node 0: [mem 0x0000000041000000-0x000000004a3fffff]
[ 0.000000] node 0: [mem 0x000000004a400000-0x00000000510fffff]
[ 0.000000] node 0: [mem 0x0000000051100000-0x00000000511fffff]
[ 0.000000] node 0: [mem 0x0000000051200000-0x00000000512fffff]
[ 0.000000] node 0: [mem 0x0000000051300000-0x000000007fffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x000000007fffffff]
[ 0.000000] psci: probing for conduit method from DT.
[ 0.000000] psci: PSCIv1.0 detected in firmware.
[ 0.000000] psci: Using standard PSCI v0.2 function IDs
[ 0.000000] psci: MIGRATE_INFO_TYPE not supported.
[ 0.000000] psci: SMC Calling Convention v1.0
[ 0.000000] psci: OSI mode supported.
[ 0.000000] psci: [Firmware Bug]: failed to set PC mode: -1
[ 0.000000] percpu: Embedded 19 pages/cpu s37864 r8192 d31768 u77824
[ 0.000000] Detected VIPT I-cache on CPU0
[ 0.000000] alternatives: applying boot alternatives
[ 0.000000] Kernel command line: console=ttyMSM0,115200n8 root=/dev/ubiblock0_1
[ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 258048
[ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.000000] software IO TLB: SWIOTLB bounce buffer size adjusted to 1MB
[ 0.000000] software IO TLB: area num 4.
[ 0.000000] software IO TLB: mapped [mem 0x000000007eb00000-0x000000007ec00000] (1MB)
[ 0.000000] Memory: 868260K/1048576K available (8704K kernel code, 1012K rwdata, 2720K rodata, 17024K init, 280K bss, 180316K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.000000] rcu: Hierarchical RCU implementation.
[ 0.000000] Tracing variant of Tasks RCU enabled.
[ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[ 0.000000] Root IRQ handler: gic_handle_irq
[ 0.000000] GICv2m: range[mem 0x0b00a000-0x0b00affc], SPI[448:479]
[ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns
[ 0.000000] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns
[ 0.000475] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)
[ 0.000489] pid_max: default: 32768 minimum: 301
[ 0.005627] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
[ 0.005640] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
[ 0.010025] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[ 0.010262] rcu: Hierarchical SRCU implementation.
[ 0.010267] rcu: Max phase no-delay instances is 1000.
[ 0.011439] smp: Bringing up secondary CPUs ...
[ 0.012114] Detected VIPT I-cache on CPU1
[ 0.012221] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 0.012931] Detected VIPT I-cache on CPU2
[ 0.013004] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 0.013680] Detected VIPT I-cache on CPU3
[ 0.013747] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 0.013816] smp: Brought up 1 node, 4 CPUs
[ 0.013825] SMP: Total of 4 processors activated.
[ 0.013831] CPU features: detected: 32-bit EL0 Support
[ 0.013835] CPU features: detected: CRC32 instructions
[ 0.013896] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching
[ 0.013902] CPU: All CPU(s) started at EL1
[ 0.013905] alternatives: applying system-wide alternatives
[ 0.025600] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[ 0.025627] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[ 0.027369] pinctrl core: initialized pinctrl subsystem
[ 0.029767] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.030354] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
[ 0.030393] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.030429] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.030850] thermal_sys: Registered thermal governor 'step_wise'
[ 0.030912] cpuidle: using governor menu
[ 0.031098] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.031184] ASID allocator initialised with 65536 entries
[ 0.094887] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4
[ 0.097853] Modules: 25296 pages in range for non-PLT usage
[ 0.097862] Modules: 516816 pages in range for PLT usage
[ 0.102931] SCSI subsystem initialized
[ 0.103155] usbcore: registered new interface driver usbfs
[ 0.103212] usbcore: registered new interface driver hub
[ 0.103266] usbcore: registered new device driver usb
[ 0.103716] qcom_scm: convention: smc arm 64
[ 0.105506] clocksource: Switched to clocksource arch_sys_counter
[ 0.109290] NET: Registered PF_INET protocol family
[ 0.109445] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
[ 0.112018] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear)
[ 0.112042] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.112057] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.112142] TCP bind hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.112460] TCP: Hash tables configured (established 8192 bind 8192)
[ 0.112964] MPTCP token hash table entries: 1024 (order: 2, 24576 bytes, linear)
[ 0.113152] UDP hash table entries: 512 (order: 2, 16384 bytes, linear)
[ 0.113201] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)
[ 0.113634] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.113686] PCI: CLS 0 bytes, default 64
[ 0.115843] workingset: timestamp_bits=46 max_order=18 bucket_order=0
[ 0.116612] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.116620] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
[ 0.128293] qcom-qmp-usb-phy 78000.phy: supply vdda-phy not found, using dummy regulator
[ 0.128532] qcom-qmp-usb-phy 78000.phy: supply vdda-pll not found, using dummy regulator
[ 0.130641] qcom-qusb2-phy 79000.phy: supply vdd not found, using dummy regulator
[ 0.130788] qcom-qusb2-phy 79000.phy: supply vdda-pll not found, using dummy regulator
[ 0.130846] qcom-qusb2-phy 79000.phy: supply vdda-phy-dpdm not found, using dummy regulator
[ 0.131026] qcom-qusb2-phy 79000.phy: Registered Qcom-QUSB2 phy
[ 0.141730] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
[ 0.142850] msm_serial 78b1000.serial: msm_serial: detected port #1
[ 0.142895] msm_serial 78b1000.serial: uartclk = 19200000
[ 0.143282] 78b1000.serial: ttyMSM1 at MMIO 0x78b1000 (irq = 20, base_baud = 1200000) is a MSM
[ 0.143751] msm_serial 78b3000.serial: msm_serial: detected port #0
[ 0.143789] msm_serial 78b3000.serial: uartclk = 3686400
[ 0.144180] 78b3000.serial: ttyMSM0 at MMIO 0x78b3000 (irq = 21, base_baud = 230400) is a MSM
[ 0.144211] msm_serial: console setup on port #0
[ 0.144251] printk: console [ttyMSM0] enabled
[ 0.971616] msm_serial: driver initialized
[ 0.993950] loop: module loaded
[ 0.995352] nand: device found, Manufacturer ID: 0xc2, Chip ID: 0xa1
[ 0.995929] nand: Macronix MX30UF1G18AC
[ 1.002499] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[ 1.006119] qcom-nandc 79b0000.nand-controller: Opcode not supported: 238
[ 1.013708] Block protection check failed
[ 1.372575] 4 fixed-partitions partitions found on MTD device qcom_nand.0
[ 1.372630] Creating 4 MTD partitions on "qcom_nand.0":
[ 1.378373] 0x000000000000-0x000003400000 : "rootfs_1"
[ 1.422947] 0x000003400000-0x000003c00000 : "0:wififw"
[ 1.429446] 0x000003c00000-0x000007000000 : "rootfs"
[ 1.468953] mtd: setting mtd2 (rootfs) as root device
[ 1.469261] mtdsplit: no squashfs found in "rootfs"
[ 1.473010] 0x000007000000-0x000007800000 : "0:wififw_1"
[ 1.486927] spi_qup 78b5000.spi: IN:block:16, fifo:64, OUT:block:16, fifo:64
[ 1.487814] spi-nor spi0.0: mx25u6435f (8192 Kbytes)
[ 1.510214] 19 fixed-partitions partitions found on MTD device spi0.0
[ 1.510673] Creating 19 MTD partitions on "spi0.0":
[ 1.515706] 0x000000000000-0x000000050000 : "0:sbl1"
[ 1.520906] 0x000000050000-0x000000060000 : "0:mibib"
[ 1.526058] 0x000000060000-0x000000080000 : "0:bootconfig"
[ 1.530985] 0x000000080000-0x0000000a0000 : "0:bootconfig1"
[ 1.536381] 0x0000000a0000-0x000000220000 : "0:qsee_1"
[ 1.541803] 0x000000220000-0x0000003a0000 : "0:qsee"
[ 1.547108] 0x0000003a0000-0x0000003b0000 : "0:devcfg"
[ 1.552174] 0x0000003b0000-0x0000003c0000 : "0:devcfg_1"
[ 1.557121] 0x0000003c0000-0x0000003d0000 : "0:apdp"
[ 1.562558] 0x0000003d0000-0x0000003e0000 : "0:apdp_1"
[ 1.567534] 0x0000003e0000-0x000000420000 : "0:rpm_1"
[ 1.572472] 0x000000420000-0x000000460000 : "0:rpm"
[ 1.577610] 0x000000460000-0x000000470000 : "0:cdt_1"
[ 1.582279] 0x000000470000-0x000000480000 : "0:cdt"
[ 1.587518] 0x000000480000-0x000000490000 : "0:appsblenv"
[ 1.592084] 0x000000490000-0x000000530000 : "0:appsbl_1"
[ 1.597780] 0x000000530000-0x0000005d0000 : "0:appsbl"
[ 1.603131] 0x0000005d0000-0x000000610000 : "0:art"
[ 1.608128] 0x000000610000-0x000000690000 : "0:ethphyfw"
[ 1.620596] spmi spmi-0: PMIC arbiter version v2 (0x20010000)
[ 1.737017] i2c_dev: i2c /dev entries driver
[ 1.743647] sdhci: Secure Digital Host Controller Interface driver
[ 1.743693] sdhci: Copyright(c) Pierre Ossman
[ 1.748857] sdhci-pltfm: SDHCI platform and OF driver helper
[ 1.755146] remoteproc remoteproc0: releasing cd00000.q6v5_wcss
[ 1.761213] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
[ 1.782637] NET: Registered PF_INET6 protocol family
[ 1.783773] Segment Routing with IPv6
[ 1.786742] In-situ OAM (IOAM) with IPv6
[ 1.790295] NET: Registered PF_PACKET protocol family
[ 1.794356] 8021q: 802.1Q VLAN Support v1.8
[ 1.831641] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4
[ 1.831994] cpr4_ipq807x_apss_read_fuse_data: apc_corner: speed bin = 0
[ 1.837847] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR fusing revision = 1
[ 1.844367] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR misc fuse value = 0
[ 1.852042] cpr4_ipq807x_apss_read_fuse_data: apc_corner: Voltage boost fuse config = 0 boost = disable
[ 1.859544] cpr3_mem_acc_init: apc: not using memory accelerator regulator
[ 1.868678] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused SVS: open-loop= 704000 uV
[ 1.875627] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused NOM: open-loop= 808000 uV
[ 1.885610] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused TURBO: open-loop= 872000 uV
[ 1.895412] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused STURBO: open-loop= 960000 uV
[ 1.905277] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused SVS: quot[ 7]= 744, quot_offset[ 7]= 0
[ 1.915045] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused NOM: quot[ 7]= 938, quot_offset[ 7]= 190
[ 1.925890] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused TURBO: quot[ 7]=1046, quot_offset[ 7]= 105
[ 1.936828] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused STURBO: quot[ 7]=1203, quot_offset[ 7]= 155
[ 1.948000] cpr3_regulator_init_ctrl: apc: Default CPR mode = closed-loop
[ 1.951229] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 800000 KHz, changing to: 1017600 KHz
[ 1.967655] remoteproc remoteproc0: cd00000.q6v5_wcss is avai▒[ 1.987757] Freeing unused kernel memory: 17024K
[ 1.987904] Run /init as init process
[ 2.278450] init: Console is alive
[ 2.278583] init: - watchdog -
[ 2.289477] kmodloader: loading kernel modules from /etc/modules-boot.d/*
[ 2.308239] gpio_button_hotplug: loading out-of-tree module taints kernel.
[ 2.311815] pstore: Using crash dump compression: deflate
[ 2.314028] printk: console [ramoops-1] enabled
[ 2.320002] pstore: Registered ramoops as persistent store backend
[ 2.323820] ramoops: using 0x100000@0x51200000, ecc: 0
[ 2.341774] ssdk_dt_parse_interrupt[941]:INFO:intr-gpio does not exist
[ 4.035549] regi_init[2525]:INFO:Initializing HPPE Done!!
[ 4.035727] regi_init[2574]:INFO:qca-ssdk module init succeeded!
[ 4.042434] EDMA ver 1 hw init
[ 4.046261] EDMA HW Reset completed succesfully
[ 4.048909] Num rings - TxDesc:1 (23-23) TxCmpl:1 (7-7)
[ 4.053306] RxDesc:1 (15-15) RxFill:1 (7-7)
[ 4.059124] dp5-syn: ppe offload disabled: 0 for macid 5
[ 4.062683] dp5-syn: Switch attached to macid 5 status: 0
[ 4.127669] Qualcomm QCA8081 90000.mdio-1:18: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:18, irq=POLL)
[ 4.128679] dp6-syn: ppe offload disabled: 0 for macid 6
[ 4.136587] dp6-syn: Switch attached to macid 6 status: 0
[ 4.227658] Qualcomm QCA8081 90000.mdio-1:1c: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:1c, irq=POLL)
[ 4.228586] **********************************************************
[ 4.236580] * NSS Data Plane driver
[ 4.243056] **********************************************************
[ 4.260279] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[ 4.260342] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1
[ 4.264832] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe65 hci version 0x110 quirks 0x0000008002000010
[ 4.272314] xhci-hcd xhci-hcd.1.auto: irq 39, io mem 0x08a00000
[ 4.281693] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[ 4.287504] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2
[ 4.293059] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed
[ 4.301091] hub 1-0:1.0: USB hub found
[ 4.307353] hub 1-0:1.0: 1 port detected
[ 4.311244] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 4.315308] hub 2-0:1.0: USB hub found
[ 4.323139] hub 2-0:1.0: 1 port detected
[ 4.327890] leds-gpio leds: LED color identifier out of range
[ 4.330741] leds-gpio leds: LED system color identifier out of range
[ 4.336481] leds-gpio leds: LED color identifier out of range
[ 4.342794] leds-gpio leds: LED wlan2g color identifier out of range
[ 4.348500] leds-gpio leds: LED color identifier out of range
[ 4.354858] leds-gpio leds: LED wlan5g color identifier out of range
[ 4.362103] usbcore: registered new interface driver usb-storage
[ 4.367214] kmodloader: done loading kernel modules from /etc/modules-boot.d/*
[ 4.375428] init: - preinit -
[ 15.565499] random: crng init done
Press the [f] key and hit [enter] to enter failsafe mode
Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level
[ 19.742876] procd: - early -
[ 19.742995] procd: - watchdog -
[ 20.270479] procd: - watchdog -
[ 20.270729] procd: - ubus -
[ 20.423436] procd: - init -
Please press Enter to activate this console.
[ 20.566931] kmodloader: loading kernel modules from /etc/modules.d/*
[ 20.652320] l2tp_core: L2TP core driver, V2.0
[ 20.652975] l2tp_netlink: L2TP netlink interface
[ 20.688529] hotplug: symlinking qca-nss0.bin to /lib/firmware/qca-nss0-retail.bin
[ 20.698953] qca-nss 39000000.nss: NSS FW Version: NSS.HK.11.4.0.5-6-R
[ 20.699000] qca-nss 39000000.nss: fw of size 835960 bytes copied to addr: 40000000, nss_id: 0
[ 20.709565] urngd: v1.0.2 started.
[ 20.741373] qca-nss 39000000.nss: NSS core 0 booted successfully
[ 20.841946] hotplug: symlinking qca-nss1.bin to /lib/firmware/qca-nss1-retail.bin
[ 20.844239] qca-nss 39400000.nss: fw of size 292296 bytes copied to addr: 40800000, nss_id: 1
[ 20.852073] gre: GRE over IPv4 demultiplexor driver
[ 20.853785] qca-nss 39400000.nss: NSS core 1 booted successfully
[ 20.861831] ip_gre: GRE over IPv4 tunneling driver
[ 20.874089] QCA multicast snooping installed successfully
[ 20.879566] GACT probability on
[ 20.880427] Mirror/redirect action on
[ 20.887416] u32 classifier
[ 20.887461] input device check on
[ 20.889027] Actions configured
[ 20.899064] ntfs3: Enabled Linux POSIX ACLs support
[ 20.901154] Loading modules backported from Linux version v6.12.6-0-ge9d65b48ce1a
[ 20.902772] Backport generated by backports.git v6.1.110-1-35-g410656ef04d2
[ 20.917971] NET: Registered PF_QIPCRTR protocol family
[ 20.929704] xt_time: kernel timezone is -0000
[ 20.973220] PPP generic driver version 2.4.2
[ 20.974125] NET: Registered PF_PPPOX protocol family
[ 20.978066] PPTP driver version 0.8.5
[ 20.983512] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
[ 20.985080] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
[ 21.002217] ath11k c000000.wifi: ipq8074 hw2.0
[ 21.002435] ath11k c000000.wifi: FW memory mode: 0
[ 21.032168] remoteproc remoteproc0: powering up cd00000.q6v5_wcss
[ 21.032286] remoteproc remoteproc0: Booting fw image IPQ8074/q6_fw.mdt, size 668
[ 21.383911] remoteproc remoteproc0: remote processor cd00000.q6v5_wcss is now up
[ 21.435375] ath11k c000000.wifi: chip_id 0x0 chip_family 0x0 board_id 0xff soc_id 0xffffffff
[ 21.435437] ath11k c000000.wifi: fw_version 0x290b84a5 fw_build_timestamp 2024-09-23 11:32 fw_build_id WLAN.HK.2.9.0.1-02146-QCAHKSWPL_SILICONZ-1
[ 26.649800] remoteproc remoteproc0: stopped remote processor cd00000.q6v5_wcss
[ 26.649850] remoteproc remoteproc0: powering up cd00000.q6v5_wcss
[ 26.655998] remoteproc remoteproc0: Booting fw image IPQ8074/q6_fw.mdt, size 668
[ 27.006590] remoteproc remoteproc0: remote processor cd00000.q6v5_wcss is now up
[ 27.008094] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[ 27.015857] kmodloader: done loading kernel modules from /etc/modules.d/*
[ 27.058158] ath11k c000000.wifi: chip_id 0x0 chip_family 0x0 board_id 0xff soc_id 0xffffffff
[ 27.058221] ath11k c000000.wifi: fw_version 0x290b84a5 fw_build_timestamp 2024-09-23 11:32 fw_build_id WLAN.HK.2.9.0.1-02146-QCAHKSWPL_SILICONZ-1
[ 27.358473] ath11k c000000.wifi: htt event 48 not handled
[ 27.391121] ath11k c000000.wifi: nss init soc nss if_num 203 userpd_id 0
[ 31.518815] ECM init
[ 31.518898] ECM database jhash random seed: 0x836001a2
[ 31.604305] br-lan: port 1(lan) entered blocking state
[ 31.604356] br-lan: port 1(lan) entered disabled state
[ 31.608450] nss-dp 3a007000.dp6-syn lan: entered allmulticast mode
[ 31.613960] nss-dp 3a007000.dp6-syn lan: entered promiscuous mode
[ 31.635766] ECM init complete
[ 32.485709] l11: disabling
[ 33.504167] qca-nss 39000000.nss: Configuring additional NSS pbufs
[ 33.534255] qca-nss 39000000.nss: Additional pbufs of size 10002432 got added to NSS
[ 34.725977] nss-dp 3a003000.dp5-syn wan: PHY Link up speed: 1000
[ 34.725989] nss-dp 3a007000.dp6-syn lan: PHY Link up speed: 2500
[ 34.732232] br-lan: port 1(lan) entered blocking state
[ 34.737098] br-lan: port 1(lan) entered forwarding state
BusyBox v1.36.1 (2025-07-30 20:41:15 UTC) built-in shell (ash)
_______ ________ __
| |.-----.-----.-----.| | | |.----.| |_
| - || _ | -__| || | | || _|| _|
|_______|| __|_____|__|__||________||__| |____|
|__| W I R E L E S S F R E E D O M
-----------------------------------------------------
OpenWrt 24.10-SNAPSHOT, r28921-acbd5676f7
-----------------------------------------------------
=== WARNING! =====================================
There is no root password defined on this device!
Use the "passwd" command to set up a new password
in order to prevent unauthorized SSH logins.
--------------------------------------------------
root@OpenWrt:~#Co do diody LED:
[ 4.327890] leds-gpio leds: LED color identifier out of range
[ 4.330741] leds-gpio leds: LED system color identifier out of range
[ 4.336481] leds-gpio leds: LED color identifier out of range
[ 4.342794] leds-gpio leds: LED wlan2g color identifier out of range
[ 4.348500] leds-gpio leds: LED color identifier out of range
[ 4.354858] leds-gpio leds: LED wlan5g color identifier out of rangeW systemie jest już tak:
root@OpenWrt:~# ls /sys/devices/platform/leds/leds/
system wlan2g wlan5gI po ustawieniu wartości na 255 lub wszystko powyżej 0 (świeci z pełną mocą).
root@OpenWrt:~# echo "255" > /sys/devices/platform/leds/leds/system/brightness
root@OpenWrt:~# echo "255" > /sys/devices/platform/leds/leds/wlan2g/brightness
root@OpenWrt:~# echo "255" > /sys/devices/platform/leds/leds/wlan5g/brightnessDostaje czerowny dla system, zielony dla wlan2g i niebieski dla wlan5g.
@MakaanPL, jak z obsługą LED-ów i przycisku ?
Wgrałem właśnie luci-24.10-snapshot-r28784-155eea44e7-qualcommax-ipq807x-yuncore_ax880-initramfs-uImage.itb , przez tfrp. Z tego co widzę, jakoś się uruchomiło, ale nie był to oczywiście start bez żadnych błędów.
Jak wgrać najlepiej ten openwrt-ipq ?
BTW: wykonałem kopię wszystkich MTD.
Wszystko już działa
Przywróciłem stock FW z backupu, po czym OpenWrt wstał bez problemu.
"Grzechem pierworodnym" było prawdopodobnie to, że wgrywając OpenWrt *factory.bin z poziomu stock FW zmieniłem rozszerzenie, ale nie całą nazwę (na "factory.ubin") - to możliwe?
Sysupgrade samego OpenWrt również działa@ambrozy5 co wtedy z sysupgrade oficjalnym buildem?
@MakaanPL - czyli wgrywałeś obraz initramfs ?
luci-24.10-snapshot-r28784-155eea44e7-qualcommax-ipq807x-yuncore_ax880-initramfs-uImage.itb tak ?
eko.one.pl → Posty przez DarioX7
Forum oparte o PunBB, wspierane przez Informer Technologies, Inc