Yochanan
Split this topic
October 1, 2022, 3:04pm
327
ledger-live-bin is sitting at version 2.43.1-1, the current version is 2.48.0.
alven
November 3, 2022, 10:44am
331
Hi!
The unstable
branch has kernel of 6.1.0rc2
, while kernel.org reports 6.1-rc3
as latest a few days ago.
Please update. Thanks!
alven
November 3, 2022, 7:23pm
333
@oberon
the started job reports: failed 30 minutes ago in 2h 23m 54s
,
please check.
oberon
November 3, 2022, 7:53pm
334
That was because of failed broadcom-wl module. Updated kernel is now in unstable repo.
Remember: This is just a release candidate kernel!
4 Likes
@Yochanan Mesa 22.2.5 is out
And I noticed itâs missing who maintains the Mesa package on Manjaro needs still to be added on PKGBUILD file.
pheiduck:
Mesa 22.2.5 is out
Yes, and 22.3.0 is also available.
That should be obvious by now.
@philm takes the weekend off, by the way.
Manjaro is a company. Arch is not.
Disclaimer: I was not involved in this decision as I am part of the community, not the company
3 Likes
@philm @oberon linux61-broadcom-wl is missing, I donât need it but other will do.
alven
December 12, 2022, 2:27pm
338
@pheiduck , not only it, but the
⯠pacman -Si linux61-zfs
error: package 'linux61-zfs' was not found
also.
But me too: do not need them both
Looks like somehow the released version of linux61 canât be shipped for now (Actions ¡ manjaro-kernels/linux61 ¡ GitHub )
zbe
December 12, 2022, 2:58pm
339
6.1 was barely released and you are already expecting built zfs modules? Feel free to ask openzfs project what is taking them so long.
alven
December 12, 2022, 3:01pm
340
@zbe , the zfs modules was added into Manjaro repos during 6.0-rc6 or rc7 stage, so a long before the 6.0 release.
Strit
December 12, 2022, 3:06pm
341
The 6.1 extra modules are being worked on.
zbe
December 12, 2022, 6:23pm
342
6.0 is supported for 11 days, but okâŚ
zfs-2.1.7
Supported Platforms
Linux : compatible with 3.10 - 6.0 kernels
FreeBSD : compatible with releases starting from 12.2-RELEASE
Morialo
December 16, 2022, 1:01pm
344
Brave-browser got updated to v1.46.144 new stable.
Just a suggestion for linux-firmware:
# Maintainer: Philip MĂźller <philm@manjaro.org>
# Maintainer: Mark Wagie <mark at manjaro dot org>
# Contributor: Thomas Bächler <thomas@archlinux.org>
pkgbase=linux-firmware
-pkgname=(linux-firmware-whence linux-firmware amd-ucode
+pkgname=(linux-firmware amd-ucode
+ linux-firmware-{whence,nfp,mellanox,marvell,qcom,liquidio,qlogic,bnx2x}
)
_tag=20221214
pkgver=20221214.f3c283e
pkgrel=1
pkgdesc="Firmware files for Linux"
url="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;a=summary"
license=('GPL2' 'GPL3' 'custom')
arch=('any')
makedepends=('git')
options=(!strip)
source=("git+https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git#tag=${_tag}?signed")
sha256sums=('SKIP')
validpgpkeys=('4CDE8575E547BF835FE15807A31B6BD72486CFD6') # Josh Boyer <jwboyer@fedoraproject.org>
_backports=(
)
prepare() {
cd ${pkgbase}
local _c
for _c in "${_backports[@]}"; do
git log --oneline -1 "${_c}"
git cherry-pick -n "${_c}"
done
}
pkgver() {
cd ${pkgbase}
# Commit date + short rev
echo $(TZ=UTC git show -s --pretty=%cd --date=format-local:%Y%m%d HEAD).$(git rev-parse --short HEAD)
}
build() {
mkdir -p kernel/x86/microcode
cat ${pkgbase}/amd-ucode/microcode_amd*.bin > kernel/x86/microcode/AuthenticAMD.bin
# Reproducibility: set the timestamp on the bin file
if [[ -n ${SOURCE_DATE_EPOCH} ]]; then
touch -d @${SOURCE_DATE_EPOCH} kernel/x86/microcode/AuthenticAMD.bin
fi
# Reproducibility: strip the inode and device numbers from the cpio archive
echo kernel/x86/microcode/AuthenticAMD.bin |
bsdtar --uid 0 --gid 0 -cnf - -T - |
bsdtar --null -cf - --format=newc @- > amd-ucode.img
}
_pick() {
local p="$1" f d; shift
for f; do
d="$srcdir/$p/${f#$pkgdir/}"
mkdir -p "$(dirname "$d")"
mv "$f" "$d"
rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
done
}
package_linux-firmware-whence() {
pkgdesc+=" - contains the WHENCE license file which documents the vendor license details"
install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 ${pkgbase}/WHENCE
}
package_linux-firmware() {
depends=('linux-firmware-whence')
cd ${pkgbase}
make DESTDIR="${pkgdir}" FIRMWAREDIR=/usr/lib/firmware install
# Trigger a microcode reload for configurations not using early updates
echo 'w /sys/devices/system/cpu/microcode/reload - - - - 1' |
install -Dm644 /dev/stdin "${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 LICEN*
# split
cd "${pkgdir}"
_pick linux-firmware-nfp usr/lib/firmware/netronome
_pick linux-firmware-nfp usr/share/licenses/${pkgname}/LICENCE.Netronome
_pick linux-firmware-mellanox usr/lib/firmware/mellanox
_pick linux-firmware-marvell usr/lib/firmware/{libertas,mwl8k,mwlwifi,mrvl}
_pick linux-firmware-marvell usr/share/licenses/${pkgname}/LICENCE.{Marvell,NXP}
_pick linux-firmware-qcom usr/lib/firmware/{qcom,a300_*}
_pick linux-firmware-qcom usr/share/licenses/${pkgname}/LICENSE.qcom
_pick linux-firmware-liquidio usr/lib/firmware/liquidio
_pick linux-firmware-liquidio usr/share/licenses/${pkgname}/LICENCE.cavium_liquidio
_pick linux-firmware-qlogic usr/lib/firmware/{qlogic,qed,ql2???_*,c{b,t,t2}fw-*}
_pick linux-firmware-qlogic usr/share/licenses/${pkgname}/LICENCE.{qla1280,qla2xxx}
_pick linux-firmware-bnx2x usr/lib/firmware/bnx2x*
}
package_amd-ucode() {
pkgdesc="Microcode update image for AMD CPUs"
license=(custom)
install -Dt "${pkgdir}/boot" -m644 amd-ucode.img
install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 ${pkgbase}/LICENSE.amd-ucode
}
package_linux-firmware-nfp() {
pkgdesc+=" - nfp / Firmware for Netronome Flow Processors"
depends=('linux-firmware-whence')
mv -v linux-firmware-nfp/* "${pkgdir}"
}
package_linux-firmware-mellanox() {
pkgdesc+=" - mellanox / Firmware for Mellanox Spectrum switches"
depends=('linux-firmware-whence')
mv -v linux-firmware-mellanox/* "${pkgdir}"
}
package_linux-firmware-marvell() {
pkgdesc+=" - marvell / Firmware for Marvell devices"
depends=('linux-firmware-whence')
mv -v linux-firmware-marvell/* "${pkgdir}"
# remove arm64 firmware #76583
rm "${pkgdir}"/usr/lib/firmware/mrvl/prestera/mvsw_prestera_fw_arm64-v4.1.img
}
package_linux-firmware-qcom() {
pkgdesc+=" - qcom / Firmware for Qualcomm SoCs"
depends=('linux-firmware-whence')
mv -v linux-firmware-qcom/* "${pkgdir}"
}
package_linux-firmware-liquidio() {
pkgdesc+=" - liquidio / Firmware for Cavium LiquidIO server adapters"
depends=('linux-firmware-whence')
mv -v linux-firmware-liquidio/* "${pkgdir}"
}
package_linux-firmware-qlogic() {
pkgdesc+=" - qlogic / Firmware for QLogic devices"
depends=('linux-firmware-whence')
mv -v linux-firmware-qlogic/* "${pkgdir}"
}
package_linux-firmware-bnx2x() {
pkgdesc+=" - bnx2x / Firmware for Broadcom NetXtreme II 10Gb ethernet adapters"
depends=('linux-firmware-whence')
mv -v linux-firmware-bnx2x/* "${pkgdir}"
}
# vim:set sw=2 et:
@Yochanan Etcher update was 8m ago:
Manjaro Linux GitLab
540dc31 (v1.10.6, 2022-12-02)
035c8df (Merge pull request #3897 from balena-io/aethernet-assetv, 2022-12-02)
03d6a01 (Dummy update to fix asset version issue, 2022-12-02)
etcher
has not been in the Manjaro repos for months. Please check the repos before making a request.
alven
January 2, 2023, 11:49pm
348
the kernel of 6.2-rc2 version was released. please update when you can. thx!
Yes, weâre aware, thank you. Please have patience, not everyone is off holiday.
In general, do not post here for packages that are always provided.
This is the second time in a week youâve posted in this category due to your own impatience. Posts like this here (have been and) will be deleted without notice.