@DocHardinger No response to my email so far. As an open source product they can just walk away. I don't know that they have, but they can.
Posts made by crispyoz
-
RE: Hardware Reset issue on v23.05.3
-
RE: Red light after firmware upgrade (oupgrade)
@javadesigner You have there an Omega2Pro, this device uses the Omega2S+ SoC on a board that also incorporates additional 8K storage LiPO etc.
The LED behaviour you report is a known behaviour of this device, you need to update u-boot to version 1.1.3 or above. Here is the documentation on how to do this.
-
RE: Hardware Reset issue on v23.05.3
@matiaslao I don't know that the dissolution impacts on 2028 availability, perhaps it's just a reorganisation. I want clarity myself as it impacts my own planning. This is why I think @Zheng-Han needs to provide some form of statement.
Availability may just mean that if someone orders 500 units then they'll do a production run, I have no idea.
As my current work is on hold it's pushed my own planning out by about a year, so this is a concern for me. I think the uncertainty could be a killer.
I'll email Zheng directly and see what response I receive.
-
RE: OpenWrt 24.10.2
@DocHardinger The build system wrapper can build OWRT 24 including p44-ledchain. Some months ago (April) I merged some of the Onion patches from OWRT 23 into my 24 build and ended up with a working 24 system. I recall I was working on migrating some patches related to the DTS overlays as I want to use the SPI overlay stuff.
-
RE: Hardware Reset issue on v23.05.3
@matiaslao Unfortunately I'm voice typing this right now due to lack of hands otherwise I certainly would. I don't work for Onion just use their products in my products. @Zheng-Han (CEO) hasn't been online since July and @Lazar-Demin is no longer with Onion. Interestingly I note Onion Corporation was dissolved 30th April 2025.
Since this is an opensource product they have no requirement to support the product, but I think it would be nice if @Zheng-Han provided some sort of statement to users especially in light of the statement that Omega2 is going to be available until 2028
Perhaps another member can test, @luz may be able to assist.
-
RE: Hardware Reset issue on v23.05.3
@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
-
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.