@matiaslao Unfortunately I can't test myself due to lack of hands, one of the Onion guys will need to. @Lazar-Demin77 is no longer with Onion so I guess it is up to @Zheng-Han
Posts made by crispyoz
-
RE: Hardware Reset issue on v23.05.3
-
RE: OpenWrt 24.10.2
@DocHardinger 24.10 do work on Omega2 it will depend on what specific packaged you need. p44-ledchain works on 24.10, I made a patch @luz has merged.
-
RE: Hardware Reset issue on v23.05.3
@matiaslao Apologies, I currently am recovering from 2 broken wrists so I'm a bit slow. My guess is that you're getting bitten by an addressing mismatch so the flash is in 4 byte mode when the cpu is booting in 3 byte mode.
Have a look at the docs related to special pins here it explains requirements for HW_RST_N
-
RE: how to properly remove python2 after pip installed it
@magouero opkg is not particularly sophisticated which is why OpenWrt are changing over to APK package manager. I would do it this way:
opkg remove python3 --force-removal-of-dependent-packages
opkg remove python --force-removal-of-dependent-packagesThen opkg list 'python' to see if there is anything left to clean up. See the docs
-
RE: Hardware Reset issue on v23.05.3
@matiaslao Before I try this myself can you clarify "bricked" please, can you still boot into u-boot and reflash the firmware or is the device unusable? Perhaps post the boot up log screen.
-
RE: Hardware Reset issue on v23.05.3
@matiaslao Is you use the factory reset process do you experience the same issue?
-
RE: 23.05.3 iwinfo scan disconnects AP
@DocHardinger sorry for the absence, I literally fell down a hole. Anyway if this issue is still open please create a new thread.
-
RE: Onion Omega 2 Pro fried
@Patrick-Mischler Does anything show on the console? I mean if you connect the device to the USB on your computer and run a terminal application to receive the output from the Pro, does it show anything at all?
Let us know if you are running windo$e or *nix on your computer so we can troubleshoot.
-
RE: 23.05.3 iwinfo scan disconnects AP
@DocHardinger I'm currently travelling so haven't completed my testing since I don't carry a Windoze machine with me. However what I found thus far is that if I slow down iwinfo by ~200ms each probe, the windows machine does not disconnect.
The question I want to answer, is whether this tiny delay simply reduces the load on the Omega2p so it can respond to the network requests in a more timely manner. If this is the case, then my earlier hypothesis that windoze is simply less tolerant of response time variations than lesser systems, would appear to be true.
But I am not yet prepared to make that conclusion until I have done more testing, but if this were the case then we just create a patch to add this functionality.
-
RE: LuCi installation on Omega2+
@eng_Ahmed So this is where you need to do bit of hacking. Since both luci and OnionOS want to use the same directory, we need to backup the /www directory to some place else:
cd / mv www www2
Which moves the current www directory and it's content to a new directory named www2.
Now force opkg to install luci, ignoring the perceived conflict:
opkg --force <luci package name>
Now you'll have both packages installed, you just need to configure lighttpd to find luci the www directory and OnionOS in the www2 directory.
One thing buzzing around in the back of my head is that I seem to recall (but may be wrong) there was some hardcoded /www references in the OnionOS stuff, so you may need to do the reverse and put OnionOS in /www and Luci in /www2. Just juggle them like this:
cd / mv www www3 mv www2 www mv www3 www2
Those directory names are abitrary, you could call them something like www_luci and www_onion you just have to tell lighttpd where to find them.
-
RE: LuCi installation on Omega2+
@eng_Ahmed Take a look in /etc/opkg/distfeeds.conf, I don't have one available to me right now but you can uncomment lines 2 and 5 and then run opkg update, then try installing again. Otherwise post your distfeeds.conf here so I can see. My internet is like a yoyo right now (thanks to the earthquake on Thursday) but I login when I can.
-
RE: Missing apcli0 interface with openwrt 23.05
@Alberto-Brosich Try this configuration of network and wireless and tell me how you go ,just change only the client parameters (nothing secret in mine):
/etc/config/network:
config interface 'loopback' option device 'lo' option proto 'static' option ipaddr '127.0.0.1' option netmask '255.0.0.0' option disabled '0' config globals 'globals' option ula_prefix 'fd80:3b06:c6c7::/48' config device option name 'br-lan' option type 'bridge' list ports 'eth0' config interface 'wlan' option device 'br-lan' option proto 'static' option ipaddr '192.168.3.1' option netmask '255.255.255.0' option ip6assign '60' option disabled '0' config switch option name 'switch0' option reset '1' option enable_vlan '0' config interface 'wwan' option proto 'dhcp' option device 'apcli0' option disabled '0' config interface 'lan' option device 'eth0' option proto 'static' option netmask '255.255.255.0' option ipaddr '192.168.4.1'
/etc/config/wireless
config wifi-device 'radio0' option type 'mac80211' option path 'platform/10300000.wmac' option channel '11' option band '2g' option htmode 'HT20' option disabled '0' option country 'ID' config wifi-iface 'default_radio0' option device 'radio0' option network 'wlan' option mode 'ap' option ssid 'dash' option encryption 'psk2' option key 'gnkdsjhfksfksgf;isyuf' option hidden '0' option disabled '1' config wifi-iface 'client' option device 'radio0' option network 'wwan' option mode 'sta' option ssid 'MarriottBonvoy' option key '' option encryption 'none' option ifname 'apcli0' option disabled '0' option disassoc_low_ack '0'
-
RE: Missing apcli0 interface with openwrt 23.05
@Alberto-Brosich your ssid key in your post is only 5 characters in both the sta and ap, perhaps you masked them out for the post, but if not then this will cause the issue ifup issue. Since you have selected psk2 encryption, your keys need to be between 8 and 63 characters.
-
RE: LuCi installation on Omega2+
@eng_Ahmed OnionOS OOTB uses Lighttpd as does Luci, so both can run on a bare bones web server. The main issue is how they can both coexist on the same server and how your browser request gets directed to the correct site.
I should note that I haven't tried this specific configuration, but I do use a multisite configuration on my devices, Lighttpd is amazingly functional for such a small footprint and includes conditional processing of requests.
Take a look at the configuration tutorial, you can see it is possible to create virtual hosts using the conditional url parsing.
-
RE: Missing packages when building Custom Firmware
@DocHardinger Oops yes you are correct. Let me see if any of the other slow mirrors I found previously have it. Otherwise we can always build it.
-
RE: Missing apcli0 interface with openwrt 23.05
@Alberto-Brosich can you post the output of the command uci show network
-
RE: Missing packages when building Custom Firmware
@DocHardinger These are some of the reasons I build my own firmware
Their log indicates some issue with missing rust compiler.
Report the issue on openwrt forum, some of the devs haunt that place so you might get noticed, it's broken on 24.10 as well so it'll get some attention.
Here is a link to a mirror of the openwrt repo that seems to sync every few days, I just checked and the ipks you need are still there so you can grab them ASAP.
-
RE: Missing packages when building Custom Firmware
@DocHardinger It looks like those packages are not in the openwrt.org repos, I can see them in 22 but not in 23 or 24. If you look in your openwrt-imagebuilder-wrapper/openwrt-imagebuilder/repositories.conf you can see the openwrt repos.