Skip to content
成功

変更履歴

概要

  1. qualcommax: ipq60xx: remove source-only flag (commit: 1f53b7f) (details)
  2. Revert "openwrt-keyring: fix missing 24.10 usign key by installing it" (commit: 118c657) (details)
  3. openwrt-keyring: apk: use just snapshot key explicitly (commit: 72dec10) (details)
  4. ramips: mt7621: support openwrt,netdev-name for renaming interfaces (commit: 5695267) (details)
  5. Revert "target,base-files: unify handling of procd-ujail" (commit: 341cc04) (details)
  6. mediatek: remove ktd-202x driver filogic image (Aer Vero W6m) (commit: 1bdb6d8) (details)
  7. build: profiles.json: add kernel version information (commit: c857145) (details)
  8. base-files: add migration information for APK (commit: c19c31f) (details)
  9. uci: update to Git HEAD (2024-11-26) (commit: 3929ef4) (details)
  10. netifd: update to Git 768027c5a7640137857f412f554227abd6160cdd (2024-11-27) (commit: f4492b6) (details)
コミット 1f53b7fb75265d182e809ef3e3cbaca0c43dd3ec by robimarko
qualcommax: ipq60xx: remove source-only flag

Its been a while since we added ipq60xx as source-only, it is now
quite usable so lets remove the source-only flag to start building
official images.

I also plan to merge additional popular boards rather soon.

Link: https://github.com/openwrt/openwrt/pull/17065
Signed-off-by: Robert Marko <robimarko@gmail.com>
(commit: 1f53b7f)
The file was modifiedtarget/linux/qualcommax/ipq60xx/target.mk (diff)
コミット 118c657bd160fb68c29cade49e726128b1c0fa8b by robimarko
Revert "openwrt-keyring: fix missing 24.10 usign key by installing it"

This reverts commit 37784c48e93c663dafc99454c24bebf4e258556f as the
preference is to have single explicit key for each release/branch.

Signed-off-by: Petr Štetiar <ynezz@true.cz>
Link: https://github.com/openwrt/openwrt/pull/16852
Signed-off-by: Robert Marko <robimarko@gmail.com>
(commit: 118c657)
The file was modifiedpackage/system/openwrt-keyring/Makefile (diff)
コミット 72dec105fb99a949d7ecf2a3d0ac29880007d602 by robimarko
openwrt-keyring: apk: use just snapshot key explicitly

Currently we're going to ship all the apk keys in the keyring, but the
preference is to ship and use single release/branch specific key so lets
use openwrt-snapshots.pem for apk explicitly as well.

Fixes: 2cea05002489 ("openwrt-keyring: add apk public key for signing of package indexes")
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Link: https://github.com/openwrt/openwrt/pull/16852
Signed-off-by: Robert Marko <robimarko@gmail.com>
(commit: 72dec10)
The file was modifiedpackage/system/openwrt-keyring/Makefile (diff)
コミット 5695267847c2fe51290fdbde6ecd7114654f7988 by robimarko
ramips: mt7621: support openwrt,netdev-name for renaming interfaces

Edgerouter X currently has its eth1 port on the switch missing since there
is a naming conflict currently.

So, as the root cause is mixing kernel support for DSA interfaces having
predictable names set via "label" property vs others having it assigned
dynamically lets avoid the conflict by using our own custom property as
suggested upstream [1].

So, add support via "openwrt,netdev-name" property and use it on ERX.

Fixes: 2a25c6ace8d8 ("ramips: get rid of downstream network device label patch")
Fixes: #15643
Link: https://github.com/openwrt/openwrt/pull/17062
Signed-off-by: Robert Marko <robimarko@gmail.com>
(commit: 5695267)
The file was modifiedtarget/linux/ramips/dts/mt7621_ubnt_edgerouter-x-sfp.dts (diff)
The file was modifiedtarget/linux/ramips/mt7621/base-files/lib/preinit/04_set_netdev_label (diff)
The file was modifiedtarget/linux/ramips/dts/mt7621_ubnt_edgerouter-x.dts (diff)
The file was modifiedtarget/linux/ramips/dts/mt7621_ubnt_edgerouter-x.dtsi (diff)
コミット 341cc047b9174280d89f1b5494a42837ccbadb12 by ynezz
Revert "target,base-files: unify handling of procd-ujail"

This reverts commit ac640718aa0ceae55969bb9e7e45d00bb7bc228a as it
removes base-files package when KERNEL_NAMESPACES is deselected, as
base-files depends on procd-ujail which needs KERNEL_NAMESPACES.

Fixes: #17075
Link: https://github.com/openwrt/openwrt/pull/17081
Link: https://github.com/openwrt/openwrt/pull/17081
Signed-off-by: Petr Štetiar <ynezz@true.cz>
(commit: 341cc04)
The file was modifiedpackage/base-files/Makefile (diff)
The file was modifiedinclude/target.mk (diff)
コミット 1bdb6d84046ec1c47f28c57651358470ed212ec3 by hauke
mediatek: remove ktd-202x driver filogic image (Aer Vero W6m)

Image build fails with PR #16861 merged while PR #16860 not merged.

Removing kmod-leds-ktd202x from filogic.mk will fix the build process.

Fixes: 2898d1d1269a ("mediatek: add support for Acer Predator W6d and Acer Vero W6m")
Signed-off-by: George Oldfort <openwrt@10099.de>
Link: https://github.com/openwrt/openwrt/pull/17087
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(commit: 1bdb6d8)
The file was modifiedtarget/linux/mediatek/image/filogic.mk (diff)
コミット c857145e034f623e31ab2028049a547ecd94ce85 by ynezz
build: profiles.json: add kernel version information

Currently downstream tools like ASU lack information about kernel
version to find out the relevant kmod build folder on downloads server.

So lets fix it by providing a new `linux_kernel` JSON array which would
for the start provide Linux kernel version, revision and vermagic
information.

  "linux_kernel": {
     "release": "1",
     "vermagic": "b57450c07d3a786158c3601fc5cee57d",
     "version": "6.6.61"
   },

Fixes: openwrt/openwrt#17036
Fixes: efahl/owut#9
Co-developed-by: Petr Štetiar <ynezz@true.cz>
Signed-off-by: Eric Fahlgren <ericfahlgren@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/17042
Signed-off-by: Petr Štetiar <ynezz@true.cz>
(commit: c857145)
The file was modifiedscripts/json_overview_image_info.py (diff)
コミット c19c31f7aa6f9952b5d5e1b313eca79d4e7ed59c by ansuelsmth
base-files: add migration information for APK

If the `apk` package manager is installed, show a table of common
commands to deal with the system.

Signed-off-by: Paul Spooren <mail@aparcar.org>
(commit: c19c31f)
The file was modifiedpackage/base-files/files/etc/profile (diff)
コミット 3929ef4c21844189d5db8d14e7e6dc6ba983d571 by ansuelsmth
uci: update to Git HEAD (2024-11-26)

10f7996ec294 file: Ignore config file with '.' in name

Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
(commit: 3929ef4)
The file was modifiedpackage/system/uci/Makefile (diff)
コミット f4492b6b1c5373a27c911ad675e96ccf1ce542d2 by ynezz
netifd: update to Git 768027c5a7640137857f412f554227abd6160cdd (2024-11-27)

86da5cbcdb9d system-linux: do not pull ifindex/flags from netlink messages on rtnl events
cd96f61ba63e proto-shell: fix spurious interface teardowns with host deps
a39fe3a8b150 wireless: add support for adding a list of devices for a wifi-iface
d29cf707478c iprule: add ipproto property
768027c5a764 system-linux: restore reading flags from netlink messages

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/17074
Signed-off-by: Petr Štetiar <ynezz@true.cz>
(commit: f4492b6)
The file was modifiedpackage/network/config/netifd/Makefile (diff)