<xback>
When cloning luci feeds etc, I get a lot of these: fatal: unable to access 'https://git.openwrt.org/project/luci.git/': The requested URL returned error: 504
<xback>
anyone knows if the server is having difficulties?
<jakllsch>
probably overloaded by LLM training?
<xback>
jow: any idea?
<stintel>
clone via SSH
drussell_ has joined #openwrt-devel
<stintel>
although it seems to work fine for me
* cjd
whispers "disable ipv6"
goliath has quit [Quit: SIGSEGV]
<dwfreed>
I'd just overwrite the feeds conf to use the github mirrors
soxrok2212_ has quit [Remote host closed the connection]
soxrok2212 has joined #openwrt-devel
valku has joined #openwrt-devel
drew32_ has joined #openwrt-devel
<drew32_>
Do I need to disable all parsers if I want openwrt to use the mtd layout under spi_nor in the .dts file I created? My device is different and bcm47xxpart.c cannot parse it correctly.
soxrok2212 has quit []
soxrok2212 has joined #openwrt-devel
goliath has joined #openwrt-devel
<mrkiko>
\x: how may I go about enabling ath11k fw mode 2?
<robimarko>
Just qcom,ath11k-fw-memory-mode = <2>; in the DTS
<KanjiMonster>
drew32_: no need to disable anything, just set the appropriate compatible for your partitions node for the parser to use (e.g. "fixed-layout" IIRC for static partitions)
<mrkiko>
robimarko: thanks!!
<mrkiko>
robimarko: hey, long time no see!! Hoping all is well
<mrkiko>
robimarko: very nice to see ipq5xx/ipq6xx, thanks a lot for you HARD work.
<robimarko>
ipq50xx is not my work, I have just been cleaning it up
<drew32_>
this was one of my attempts to map the stock mtd layout into the .dts file. I am sure I screwed up somewhere, but when I compile everything and check I only see bcm47xxpart do it's thing and fail to find the partitions, I don't see any attempt to try to map this. https://textbin.net/0dvfz3qob3
<drew32_>
I have since created a new entry for my device rather than just modifying that buffalo router, but this was my first attempt haha
<KanjiMonster>
drew32_: does this device have both nand and nor flash? because you define a NOR flash, but you also include "bcm5301x-nand-cs0-bch8.dtsi" which enables NAND flash
<KanjiMonster>
the NAND flash uses a bcm47xx parser by default, so probably that is what you are seeing
<drew32_>
my device just has NOR but I couldn't find another .dts file under bcm53xx that used just NOR
<drew32_>
Yeah I see the bcm47xx parser, but it can't detect my partitions. I think one reason is I have to strip the trx header off in order to get this meru ap to take the firmware flash
<KanjiMonster>
do you have a bootlog you can share?
<drew32_>
I have been reading over the bcm47xxpart.c trying to get a better understanding of that too
<drew32_>
I set openwrt to create a squashfs as I saw it was creating a ubi for that router, but the bcm47xxpart.c cannot find the squashfs partition, my guess is it gets confused when it can't find trx header info
<drew32_>
Device is a Meru AP822i
minimal has joined #openwrt-devel
n3ph has joined #openwrt-devel
<KanjiMonster>
drew32_: ah, the issue is the extra flash@0 node under spi_nor you define. So you create spi_nor/flash@0/partitions, while the actual data is at spi_nor/partitions
<KanjiMonster>
yes (though you can drop the spi_nor "jedec,spi-nor" compatible and reg properties, those are already set by the original .dtsi)
<drew32_>
wow thanks! Will have to try this asap. Then I figured the next thing I need to do is rename runtime1 to firmware? So that openwrt see's that and then looks for the squashfs part?
drew32_ has quit [Quit: Page closed]
drew32 has joined #openwrt-devel
drew32 has quit [Remote host closed the connection]
EPinci has joined #openwrt-devel
Mangix has quit [Read error: Connection reset by peer]
Mangix has joined #openwrt-devel
<EPinci>
Hello, is anyone facing failures with ucode build after the latest commits in openwrt-24.10?
EPinci has quit [Quit: Page closed]
drussell_2 has joined #openwrt-devel
drussell_ has quit [Ping timeout: 480 seconds]
drew32 has joined #openwrt-devel
n3ph has quit [Ping timeout: 480 seconds]
lucenera7 has quit [Remote host closed the connection]
lucenera7 has joined #openwrt-devel
AtomiclyCursed has quit [Quit: ZNC 1.9.1 - https://znc.in]
AtomiclyCursed has joined #openwrt-devel
aiyion_ has quit [Remote host closed the connection]
aiyion_ has joined #openwrt-devel
n3ph has joined #openwrt-devel
n3ph has quit [Ping timeout: 480 seconds]
drew32 has quit [Remote host closed the connection]
tmn505 has quit [Remote host closed the connection]
tmn505 has joined #openwrt-devel
<drew32>
KanjiMonster: Wow that worked! Been stuck on this for over a week!
n3ph has quit [Ping timeout: 480 seconds]
drew32 has quit [Remote host closed the connection]
drew32 has joined #openwrt-devel
<drew32>
Hmm so no luck in just renaming the portion of the nor flash I flashed to firmware. Doesn't seem to split it into the two partitions I thought openwrt did automatically? Not sure if I need to manually figure out where the squashfs partition begins and add that to the .dts file as rootfs?