Is this fix
included in rc3 or rc4 for mediatek-filogic-glinet_gl-x3000
?
Cheers, Frood
Is this fix
included in rc3 or rc4 for mediatek-filogic-glinet_gl-x3000
?
Cheers, Frood
Should be in RC4.
Yeah, it should all be fixed, all fine and it should be peace on earth.
Is there a path that can be followed to see if it is included?
@hnyman always referred to such diagrams and added some explanations:
You can watch the 24.10 branch:
https://github.com/openwrt/openwrt/commits/openwrt-24.10/
It was fixed in 24.10-SNAPSHOT some builds before rc3 so should be in both.
Source: my MT3000 had it fixed after updating to r28200 whereas rc3 is r28202.
The easiest is maybe to look back from the release tag itself:
Putting it all together, I clone and checkout v24.10.0-rc3 or clone -b 24.10 branch (seems like it doesnt matter) and do
**git log -n 55 --oneline**
dd04edfba2 (HEAD, tag: v24.10.0-rc3) OpenWrt v24.10.0-rc3: adjust config defaults
8667ca841b generic: fix BCM54612E suspend/resume backport patch
5289460fd0 wifi-scripts: don't fail on unset PSK
9f76cda378 lantiq: grow kernel partition Zyxel P-2812HNU-F1
5415fb06d2 lantiq/xrx200: move 8M flash devices to a small flash subtarget
21549dbf7b kernel: bump 6.6 to 6.6.66
5a715cdbcd hostapd: fix call to hostapd reload
e40367fa99 hostapd: fix passing radio parameter in wpa_supplicant calls
f0ff244c69 firewall4: update to Git HEAD (2024-12-18)
cc69be0c13 unetd: update to Git HEAD (2024-12-17)
6642ee73bc procd: add support for reload triggers on data change
f760f74209 procd: do not overwrite service data by default
5dca1d6a41 procd: update to Git HEAD (2024-12-17)
e109caeec4 procd: update to latest HEAD
a964e96289 netifd: update to Git HEAD (2024-12-17)
acf52fed43 unetd: add firewall input rule for global port
25268f724b unetd: update to Git HEAD (2024-12-16)
6435025f9c ath79: fix tl-wa eth1 mac
6d0d4ce72f kernel: generic: tg3: Fix DMA allocations on 57766 devices
28602452df ath79: fix ath9k calibration data size for AR9132
28bde50c1d ath79: add support for KuWFi N650 CPE
efcb0ec713 kernel: bump 6.6 to 6.6.65
9af0e94fa6 kernel: bump 6.6 to 6.6.64
bf284ed4af ramips: fix 2.4G wmac eeprom offset for TL-WR902AC v4
aa1241e979 wifi-scripts: fix failing mesh setup with missing wpa_supplicant
28de3ffefa netifd: check if /sbin/wifi exists before calling it
6c664135f9 netifd: update to Git 768027c5a7640137857f412f554227abd6160cdd (2024-11-27)
620aa80064 mediatek: MERCUSYS MR90X v1: add OpenWrt U-Boot (UBI) layout
24bddf68bd uboot-mediatek: add MERCUSYS MR90X v1 support
d79a70542b arm-trusted-firmware-mediatek: add mt7986-spim-nand-ddr3 build
**d48e499fc1 mediatek: filogic: Migrate wifi configuration device paths**
b9df2d79b6 mediatek: filogic: prevent faulty mac address assignment
5afd3daeba bpftool: turn off libbfd feature in host build
1eba94e67b mac80211: realtek: add RTL8812au/RTL8821au support
8a4ce69eea mac80211: realtek: backport support for RTL8812AU/RTL8821AU
2b45e93113 linux-firmware: realtek: add RTL8812AU/RTL8821AU firmware
4bfe5ccd11 linux-firmware: update to 20241110
863d1a634e qualcommax: ipq807x: add Netgear DEVICE_VARS
45f9f15512 generic: mtd: spinand: add support for FORESEE F35SQA001G
f483de4767 generic: mtd: spinand: add support for FORESEE F35SQA002G
c995dd97c7 OpenWrt v24.10.0-rc2: revert to branch defaults
The only thing I dont understand is the difference of these commits:
https://github.com/openwrt/openwrt/commit/f8b93e2d12ef01fc565178c71c39470da798155a
and
https://github.com/openwrt/openwrt/commit/d48e499fc1f2722491d9952bd4c3db007d151505
!?!? I was actually grepping for f8b93e2 but it is d48e499 in the result list.
Might be related to some bundling of the release commits?
You can find f8b93e2 only if you checkout main to get HEAD -> main. But then, I dont see the tags for the (tag: v24.10.0-rc3)
Basic git thing.
24.10 is a full branch, with different history than main (differences since branching at the end of October). So, commits from main are backported via cherry-pick, and their hash changes. Changes both due to the cherry-pick text in commit message and because the parent commit hash is different.
So, the commits in 24.10 will have different hash although the actual code change may be identical.
Yeah, git basics. But also OpenWrt DevOps strategy, that needs to be known.
In a picture it would be like this, correct?
(Fix happens in main first, then, later it is cherry picked to one or more branches)
EDIT: whereas I see both commits
git log --grep "Migrate wifi configuration device"
f8b93e2d12ef01fc565178c71c39470da798155a
d48e499fc1f2722491d9952bd4c3db007d151505
with timestamp:
Date: Sun Dec 8 16:18:52 2024 +0100
Yes, it would be that way.
And cherry-picking does not change the author timestamp be default.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.