Artturi
a5bf2567cb
Merge pull request #245963 from amjoseph-nixpkgs/pr/linux/kernel/repick
2023-08-28 22:37:08 +03:00
Raito Bezarius
1b8869eb7f
linux/hardened/patches/6.4: 6.4.11-hardened1 -> 6.4.12-hardened1
2023-08-28 14:07:53 +02:00
Raito Bezarius
1125d5fcd2
linux/hardened/patches/6.1: 6.1.46-hardened1 -> 6.1.47-hardened1
2023-08-28 14:07:53 +02:00
Raito Bezarius
be50d8c358
linux_latest-libre: 19392 -> 19397
2023-08-28 14:07:53 +02:00
Raito Bezarius
385cbd7fc4
linux: 6.1.47 -> 6.1.49
2023-08-28 14:07:53 +02:00
Raito Bezarius
e133821958
linux: 5.15.127 -> 5.15.128
2023-08-28 14:07:53 +02:00
Raito Bezarius
238eca32de
linux: 5.10.191 -> 5.10.192
2023-08-28 14:07:53 +02:00
Raito Bezarius
4e4d4ed5c7
linux_6_5: init
...
https://lwn.net/Articles/942879/
2023-08-28 14:07:53 +02:00
Atemu
cbe6f4eb90
linux_xanmod_latest: 6.4.11 -> 6.4.12
2023-08-28 12:20:23 +02:00
Atemu
ab51ecad59
linux_xanmod: 6.1.46 -> 6.1.47
2023-08-28 12:01:34 +02:00
Raito Bezarius
655d72d49a
linux_testing: 6.5-rc5 -> 6.5-rc7
...
rc7: https://lwn.net/Articles/942249/
rc6: https://lwn.net/Articles/941403/
2023-08-24 12:01:47 +02:00
K900
fdcf135074
linux_latest-libre: 19386 -> 19392
2023-08-24 10:38:46 +03:00
K900
d68e756397
linux: 6.4.11 -> 6.4.12
2023-08-24 10:37:57 +03:00
K900
b6209350d7
linux: 6.1.46 -> 6.1.47
2023-08-24 10:37:35 +03:00
Fabián Heredia Montiel
4f88f7c201
linux/hardened/patches/6.4: 6.4.10-hardened1 -> 6.4.11-hardened1
2023-08-22 20:56:14 -06:00
Fabián Heredia Montiel
1f73de030e
linux/hardened/patches/6.1: 6.1.45-hardened1 -> 6.1.46-hardened1
2023-08-22 20:56:14 -06:00
Fabián Heredia Montiel
8364518096
linux/hardened/patches/5.4: 5.4.253-hardened1 -> 5.4.254-hardened1
2023-08-22 20:56:14 -06:00
Fabián Heredia Montiel
c063bc8a66
linux/hardened/patches/5.15: 5.15.126-hardened1 -> 5.15.127-hardened1
2023-08-22 20:56:14 -06:00
Fabián Heredia Montiel
eac0600e83
linux/hardened/patches/5.10: 5.10.190-hardened1 -> 5.10.191-hardened1
2023-08-22 20:56:14 -06:00
Fabián Heredia Montiel
470c022cfc
linux/hardened/patches/4.19: 4.19.291-hardened1 -> 4.19.292-hardened1
2023-08-22 20:56:14 -06:00
Fabián Heredia Montiel
15029c4411
linux/hardened/patches/4.14: 4.14.322-hardened1 -> 4.14.323-hardened1
2023-08-22 20:56:13 -06:00
github-actions[bot]
57d8f92a86
Merge master into staging-next
2023-08-20 12:01:23 +00:00
Maximilian Bosch
3ff88c2eff
Merge pull request #250179 from Ma27/linux-rt-fix
...
linux: make main update script slightly more robust
2023-08-20 10:25:00 +02:00
Sergei Trofimovich
cc4bb239a3
perf: enable perf stat
evens supported by libpfm
2023-08-19 13:09:17 +01:00
Maximilian Bosch
ccf0c5bd42
linux: make main update script slightly more robust
...
On #249636 I had to manually run the updaters for hardened & libre kernels.
The cause was that `update-rt.sh` suddenly broke. Because I didn't want to
inhibit other kernel updates because of a rather niche variant, I decided to
move forward temporarily and take care of it later.
One issue was that the script failed silently, i.e. I only saw that the
script terminated early from my prompt. This is fixed now by making each
niche kernel updater print its exit code code if it failed. Also, errors
are allowed, i.e. a broken `update-rt.sh` doesn't block
`hardened/update.py` etc..
The issue itself is rather simple. When I updated the kernels in #249636 ,
the sha256sums.asc for rt kernels[1] looked like this:
199bbb0cdb97ead22732473b95c8b2e8da62dfd71bde2339163119fb537a2b7c patch-6.1.38-rt13-rc1.patch.gz
a1af54f6987e96de06cad0a3226c5b5a992b60df084a904b6b94ea247fb46027 patch-6.1.38-rt13-rc1.patch.xz
7bb68561787e46e3c433d9b514373ce368d587ac459b91df41934e70280d008f patches-6.1.38-rt13-rc1.tar.gz
ee65336dd6ae0be398796e7b75291918811a23e10121dc09bd84b244b12402fa patches-6.1.38-rt13-rc1.tar.xz
However, the script itself skips any RC versions of the realtime
patches, so no releases were usable and the script failed. It's probably
possible to use the overview over all releases instead[2], however
that'd complicate the script notably. Anyways, since RT kernels don't
bump to each patch-level release, I don't think it hurts too much if
such an update is slightly more delayed. However if we want to fix this, I'd prefer
this to be fixed by folks who care more about rt kernels than I do.
[1] https://kernel.org/pub/linux/kernel/projects/rt/6.1/sha256sums.asc
[2] https://mirrors.edge.kernel.org/pub/linux/kernel/projects/rt/6.1/older/sha256sums.asc
2023-08-19 14:03:08 +02:00
Maximilian Bosch
ef82011918
linux-rt_6_1: 6.1.33-rt11 -> 6.1.46-rt13
2023-08-19 13:44:09 +02:00
github-actions[bot]
4a9909e0db
Merge master into staging-next
2023-08-19 00:01:42 +00:00
Ilan Joselevich
ea9af80d5f
linux_xanmod_latest: 6.4.10 -> 6.4.11
2023-08-18 23:42:27 +03:00
Ilan Joselevich
0d164bfc22
linux_xanmod: 6.1.45 -> 6.1.46
2023-08-18 23:41:24 +03:00
github-actions[bot]
03146a5454
Merge master into staging-next
2023-08-18 06:01:01 +00:00
Ilan Joselevich
93a52c120a
Merge pull request #248920 from Atemu/update/xanmod
...
linux_xanmod, linux_xanmod_latest: 2023-08-13
2023-08-18 04:17:37 +03:00
github-actions[bot]
3b76a64c44
Merge master into staging-next
2023-08-17 12:01:23 +00:00
Maximilian Bosch
c41b8d090d
linux/hardened/patches/6.4: 6.4.7-hardened1 -> 6.4.10-hardened1
2023-08-17 00:48:31 +02:00
Maximilian Bosch
e9b4fa1c38
linux/hardened/patches/6.1: 6.1.42-hardened1 -> 6.1.45-hardened1
2023-08-17 00:48:21 +02:00
Maximilian Bosch
6946af616c
linux/hardened/patches/5.4: 5.4.251-hardened1 -> 5.4.253-hardened1
2023-08-17 00:20:27 +02:00
Maximilian Bosch
36aa1b207c
linux/hardened/patches/5.15: 5.15.123-hardened1 -> 5.15.126-hardened1
2023-08-17 00:20:17 +02:00
Maximilian Bosch
808af66863
linux/hardened/patches/5.10: 5.10.188-hardened1 -> 5.10.190-hardened1
2023-08-17 00:19:56 +02:00
Maximilian Bosch
0d7e1948cb
linux/hardened/patches/4.19: 4.19.289-hardened1 -> 4.19.291-hardened1
2023-08-17 00:19:44 +02:00
Maximilian Bosch
fcfd921fd6
linux/hardened/patches/4.14: 4.14.320-hardened1 -> 4.14.322-hardened1
2023-08-17 00:19:31 +02:00
Maximilian Bosch
154f9ca398
linux_latest-libre: 19337 -> 19386
2023-08-17 00:19:01 +02:00
Maximilian Bosch
1541cb8cdd
linux: 6.4.10 -> 6.4.11
2023-08-17 00:14:29 +02:00
Maximilian Bosch
148ff04e56
linux: 6.1.45 -> 6.1.46
2023-08-17 00:14:12 +02:00
Maximilian Bosch
62cee8e21a
linux: 5.4.253 -> 5.4.254
2023-08-17 00:14:00 +02:00
Maximilian Bosch
965777503c
linux: 5.15.126 -> 5.15.127
2023-08-17 00:13:47 +02:00
Maximilian Bosch
6f0af2778d
linux: 5.10.190 -> 5.10.191
2023-08-17 00:13:29 +02:00
Maximilian Bosch
feee70e06a
linux: 4.19.291 -> 4.19.292
2023-08-17 00:13:13 +02:00
Maximilian Bosch
6e2765b803
linux: 4.14.322 -> 4.14.323
2023-08-17 00:13:06 +02:00
Atemu
6331c56088
linux_xanmod_latest: 6.4.8 -> 6.4.10
2023-08-13 16:01:10 +02:00
Atemu
9341e9d2ab
linux_xanmod: 6.1.43 -> 6.1.45
2023-08-13 16:00:48 +02:00
github-actions[bot]
f5eb026a2a
Merge master into staging-next
2023-08-13 06:00:52 +00:00
Artturi
86ebbdd9c0
Merge pull request #247566 from trofi/perf-hermetic-shebang
...
linuxPackages_testing.perf: fix patchShebang
2023-08-13 06:46:19 +03:00
github-actions[bot]
9f3079a7c3
Merge master into staging-next
2023-08-12 12:01:01 +00:00
Sergei Trofimovich
b93d18275c
linux: disable KUNIT only at 5.5 and later
...
`KUNIT` knob was added around 5.5 release:
914cc63eea
2023-08-12 08:13:57 +01:00
github-actions[bot]
9cc6a98540
Merge master into staging-next
2023-08-11 18:00:55 +00:00
K900
2877d702dc
linux: 5.15.125 -> 5.15.126
2023-08-11 18:05:58 +03:00
github-actions[bot]
cc6e13abfb
Merge master into staging-next
2023-08-11 12:01:01 +00:00
K900
62c9530958
linux-rt_5_15: 5.15.119-rt65 -> 5.15.125-rt66
2023-08-11 14:03:45 +03:00
K900
8e593131e0
linux: 6.4.9 -> 6.4.10
2023-08-11 14:02:40 +03:00
K900
40fc15bbf7
linux: 6.1.44 -> 6.1.45
2023-08-11 14:02:34 +03:00
K900
ae84d2bbfa
linux: 5.4.252 -> 5.4.253
2023-08-11 14:02:17 +03:00
K900
7aacf59d7a
linux: 5.10.189 -> 5.10.190
2023-08-11 14:02:01 +03:00
K900
44e047a495
linux: 4.19.290 -> 4.19.291
2023-08-11 14:01:41 +03:00
K900
33ad98508d
linux: 4.14.321 -> 4.14.322
2023-08-11 14:01:35 +03:00
github-actions[bot]
ec1a84ef66
Merge staging-next into staging
2023-08-10 18:01:30 +00:00
Raito Bezarius
3d8b08346b
linux_testing: 6.5-rc3 -> 6.5-rc5
...
rc5: https://lwn.net/Articles/940617/
rc4: https://lwn.net/Articles/939684/
2023-08-10 12:44:19 +02:00
github-actions[bot]
37cdcaae78
Merge staging-next into staging
2023-08-09 12:01:51 +00:00
Yureka
80be2b22b0
linux: disable KUnit ( #247826 )
2023-08-09 09:54:07 +02:00
github-actions[bot]
bd7afc88f7
Merge staging-next into staging
2023-08-09 00:02:37 +00:00
K900
59d581a608
linux: 6.4.8 -> 6.4.9
2023-08-09 00:15:14 +03:00
K900
9eab5c9b9e
linux: 6.1.43 -> 6.1.44
2023-08-09 00:15:09 +03:00
K900
ffb73b8a9d
linux: 5.4.251 -> 5.4.252
2023-08-09 00:15:04 +03:00
K900
ab4872bd8d
linux: 5.15.124 -> 5.15.125
2023-08-09 00:14:59 +03:00
K900
80497c6b01
linux: 5.10.188 -> 5.10.189
2023-08-09 00:14:55 +03:00
K900
95d474560d
linux: 4.19.289 -> 4.19.290
2023-08-09 00:14:50 +03:00
K900
a830274227
linux: 4.14.320 -> 4.14.321
2023-08-09 00:14:44 +03:00
Robert Hensing
bc9d2d6a7c
Merge pull request #247520 from Atemu/fix/kernel-passthru.tests
...
kernel: fix passthru.tests
2023-08-08 21:29:19 +02:00
github-actions[bot]
2e9323c2d4
Merge staging-next into staging
2023-08-08 00:02:19 +00:00
Atemu
c432393c1d
Merge pull request #247512 from Atemu/update/xanmod
...
linux_xanmod, linux_xanmod_latest: 2023-08-06
2023-08-07 21:03:36 +02:00
Sergei Trofimovich
0768fe799a
linuxPackages_testing.perf: fix patchShebang
...
Without the change `perf` build fails as:
$ nix build --no-link -f. linuxPackages_testing.perf -L
build flags: SHELL=/nix/store/p6dlr3skfhxpyphipg2bqnj52999banh-bash-5.2-p15/bin/bash prefix=\$\(out\) WERROR=0 ASCIIDOC8=1 O=\$\(buildRoot\) CC=/nix/store/bxic6j2whyg3z4h2x3xjyqgp7fl83bnp-gcc-wrapper-12.3.0/bin/cc HOSTCC=/nix/store/bxic6j2whyg3z4h2x3xjyqgp7fl83bnp-gcc-wrapper-12.3.0/bin/cc HOSTLD=/nix/store/kcp78dk7h5gcs7d4qss7rbz3skxhzdnn-binutils-wrapper-2.40/bin/ld ARCH=x86_64 NO_GTK2=1
BUILD: Doing 'make -j16' parallel build
HOSTCC fixdep.o
HOSTLD fixdep-in.o
LINK fixdep
make[1]: ./check-headers.sh: No such file or directory
make[1]: *** [Makefile.perf:241: sub-make] Error 127
make: *** [Makefile:70: all] Error 2
This started happening because upstream linux commit
d674838509
changed shebang from /bin/sh to /bin/bash.
Let's retroactively switch all `perf` releases to shell interpreter from
store.
2023-08-06 20:22:09 +01:00
Atemu
a0dcabb690
kernel: fix passthru.tests
...
https://github.com/NixOS/nixpkgs/pull/191540 indirectly broke kernel
passthru.tests; calling the testsForLinuxPackages and testsForKernel functions
with some args intended for some other exposed test-internal function.
Organise the passed-through functions under `passthru` to prevent this from
happening.
2023-08-06 15:47:54 +02:00
Atemu
5a6f112645
linux_xanmod_latest: 6.4.7 -> 6.4.8
2023-08-06 13:00:32 +02:00
Atemu
aedfec7eef
linux_xanmod: 6.1.42 -> 6.1.43
2023-08-06 13:00:32 +02:00
github-actions[bot]
f8579c6c72
Merge staging-next into staging
2023-08-05 12:02:05 +00:00
Maximilian Bosch
a86b606016
linux: 6.4.7 -> 6.4.8
2023-08-04 19:46:23 +02:00
Maximilian Bosch
fc2d8bb671
linux: 6.1.42 -> 6.1.43
2023-08-04 19:45:31 +02:00
Maximilian Bosch
f7e3cb932c
linux: 5.15.123 -> 5.15.124
2023-08-04 19:44:12 +02:00
github-actions[bot]
72d5519b60
Merge staging-next into staging
2023-08-01 18:01:44 +00:00
Fabián Heredia Montiel
8481c2c3fe
linux/hardened/patches/6.4: 6.4.6-hardened1 → 6.4.7-hardened1
2023-08-01 17:28:14 +03:00
Fabián Heredia Montiel
de33dd4fa1
linux/hardened/patches/6.1: 6.1.41-hardened1 → 6.1.42-hardened1
2023-08-01 17:28:14 +03:00
Fabián Heredia Montiel
57d4b82278
linux/hardened/patches/5.4: 5.4.250-hardened1 → 5.4.251-hardened1
2023-08-01 17:28:14 +03:00
Fabián Heredia Montiel
fad0ee83f2
linux/hardened/patches/5.15: 5.15.122-hardened1 → 5.15.123-hardened1
2023-08-01 17:28:14 +03:00
Fabián Heredia Montiel
8adc59a3fa
linux/hardened/patches/5.10: 5.10.187-hardened1 → 5.10.188-hardened1
2023-08-01 17:28:14 +03:00
Fabián Heredia Montiel
f35c775969
linux: 6.4.6 -> 6.4.7
2023-08-01 17:28:13 +03:00
Fabián Heredia Montiel
41ba292da5
linux: 6.1.41 -> 6.1.42
2023-08-01 17:28:13 +03:00
Fabián Heredia Montiel
3cc38bd1c9
linux: 5.4.250 -> 5.4.251
2023-08-01 17:28:13 +03:00
Fabián Heredia Montiel
2d415c57a3
linux: 5.15.122 -> 5.15.123
2023-08-01 17:28:13 +03:00
Fabián Heredia Montiel
2d13c9f12d
linux: 5.10.187 -> 5.10.188
2023-08-01 17:28:13 +03:00
Maximilian Bosch
f310ee473d
Merge pull request #246466 from LibreCybernetics/linux-update
...
Kernels for 2023-07-27
2023-08-01 15:17:00 +02:00
Fabián Heredia Montiel
580cd965b8
linux/hardened/patches/6.4: 6.4.6-hardened1 → 6.4.7-hardened1
2023-07-31 18:59:38 -06:00
Fabián Heredia Montiel
fc86124473
linux/hardened/patches/6.1: 6.1.41-hardened1 → 6.1.42-hardened1
2023-07-31 18:59:38 -06:00
Fabián Heredia Montiel
643694ae27
linux/hardened/patches/5.4: 5.4.250-hardened1 → 5.4.251-hardened1
2023-07-31 18:59:38 -06:00
Fabián Heredia Montiel
a05924dc86
linux/hardened/patches/5.15: 5.15.122-hardened1 → 5.15.123-hardened1
2023-07-31 18:59:38 -06:00
Fabián Heredia Montiel
cc26897da9
linux/hardened/patches/5.10: 5.10.187-hardened1 → 5.10.188-hardened1
2023-07-31 18:59:38 -06:00
Fabián Heredia Montiel
9dd903ca63
linux: 6.4.6 -> 6.4.7
2023-07-31 18:59:38 -06:00
Fabián Heredia Montiel
3cbc1fc7bb
linux: 6.1.41 -> 6.1.42
2023-07-31 18:59:38 -06:00
Fabián Heredia Montiel
09f94571eb
linux: 5.4.250 -> 5.4.251
2023-07-31 18:59:38 -06:00
Fabián Heredia Montiel
19f617fa72
linux: 5.15.122 -> 5.15.123
2023-07-31 18:59:38 -06:00
Fabián Heredia Montiel
6948d36b2c
linux: 5.10.187 -> 5.10.188
2023-07-31 18:59:38 -06:00
github-actions[bot]
af8989fe73
Merge staging-next into staging
2023-08-01 00:03:07 +00:00
Thiago Kenji Okada
72ed94cd1a
linuxKernel.kernels.linux_zen: 6.4.6-lqx1 -> 6.4.7-lqx1
2023-07-31 21:42:09 +01:00
Thiago Kenji Okada
c11dd78f49
linuxKernel.kernels.linux_zen: 6.4.6-zen1 -> 6.4.7-zen1
2023-07-31 21:40:08 +01:00
Thiago Kenji Okada
0d4f022801
Merge pull request #245237 from thiagokokada/bump-zen
...
linuxKernel.kernels.linux_zen: 6.4.2-zen1 -> 6.4.6-zen1; linuxKernel.kernels.linux_lqx: 6.4.2-lqx1 -> 6.4.6-lqx1
2023-07-31 18:28:58 +00:00
github-actions[bot]
8181d9443b
Merge staging-next into staging
2023-07-30 18:01:39 +00:00
Ryan Lahfa
a2a9595033
Merge pull request #244345 from RaitoBezarius/update/kernel-testing
2023-07-30 18:58:17 +02:00
Raito Bezarius
7fae011619
linux_testing: 6.5-rc2 -> 6.5-rc3
...
https://lwn.net/Articles/939013/
2023-07-30 15:39:37 +02:00
github-actions[bot]
7bcc652f8d
Merge staging-next into staging
2023-07-30 06:01:44 +00:00
Maximilian Bosch
4d8feb88f2
Merge pull request #245648 from LibreCybernetics/update-kernel-hardened
...
Hardened kernels for 2023-07-25
2023-07-29 18:49:42 +02:00
Atemu
c5944c0e4a
Merge pull request #245881 from Atemu/update/xanmod
...
linux_xanmod, linux_xanmod_latest: 2023-07-28
2023-07-29 11:05:46 +02:00
github-actions[bot]
85536e3a09
Merge staging-next into staging
2023-07-29 00:02:36 +00:00
Alyssa Ross
46383fc82b
linuxManualConfig: set badPlatforms
...
Older kernels shouldn't be marked as supporting architectures that
were only added to the kernel later.
2023-07-28 15:10:21 -07:00
Ryan Lahfa
020ff5ccb5
Merge pull request #239780 from RaitoBezarius/nixos-for-aps
2023-07-28 23:12:36 +02:00
Adam Joseph
dbe0d20b57
Revert "linuxManualConfig: don't build inside source tree"
...
This reverts commit d75cff2ee3
.
2023-07-28 12:32:03 -07:00
Adam Joseph
93021f12c3
Revert "linuxManualConfig: unpack directly into $dev"
...
This reverts commit 7de3f08ce3
.
2023-07-28 12:32:03 -07:00
Adam Joseph
12a06dc2b8
Revert "linuxManualConfig: use the default make target"
...
This reverts commit 41f788b121
.
2023-07-28 12:32:03 -07:00
Adam Joseph
3aff655361
Revert "linuxManualConfig: install GDB scripts"
...
This reverts commit d57568fcad
.
2023-07-28 12:32:03 -07:00
Adam Joseph
37eb25a428
Revert "linuxManualConfig: get rid of drvAttrs"
...
This reverts commit f521f46133
.
2023-07-28 12:32:03 -07:00
Adam Joseph
92f7beccb2
Revert "linuxManualConfig: fix inaccurate FIXME comment"
...
This reverts commit 4d15632caf
.
2023-07-28 12:32:03 -07:00
Adam Joseph
479dd15b5f
Revert "linux: manual-config: use a non-random path for $buildRoot"
...
This reverts commit a695425e46
.
2023-07-28 12:32:02 -07:00
Adam Joseph
ddaa949afe
Revert "linux: default stdenv.hostPlatform.linux-kernel"
...
This reverts commit febe477628
.
2023-07-28 12:32:02 -07:00
Adam Joseph
06f20db451
Revert "linuxManualConfig: always depend on ubootTools"
...
This reverts commit e5e02f3214
.
2023-07-28 12:32:02 -07:00
Adam Joseph
eecef61ba5
Revert "linux.configfile: remove unused kernelTarget attr"
...
This reverts commit 01b3642589
.
2023-07-28 12:32:02 -07:00
Adam Joseph
c801a96a0d
Revert "linuxManualConfig: set badPlatforms"
...
This reverts commit 5c5e5e2f1f
.
2023-07-28 12:32:02 -07:00
Adam Joseph
007f794167
Revert "lib/systems: strip kernel to avoid reference cycles"
...
This reverts commit 2458c94c9e
.
2023-07-28 12:32:02 -07:00
Adam Joseph
17d25bf762
Revert "linuxManualConfig: restore functionality of isModular and buildDTBs"
...
This reverts commit 284d76ee3d
.
2023-07-28 12:32:01 -07:00
Adam Joseph
c200f5e411
partial revert of f3719756b5
2023-07-28 12:32:01 -07:00
Ryan Lahfa
3ac8c61e9d
Merge pull request #244883 from LibreCybernetics/linux_6_3_eol
2023-07-28 18:40:03 +02:00
Atemu
c7ac8bcc04
linux_xanmod_latest: 6.4.4 -> 6.4.7
2023-07-28 16:03:01 +02:00
Atemu
cbf2d325b4
linux_xanmod: 6.1.39 -> 6.1.42
2023-07-28 16:02:45 +02:00
Fabián Heredia Montiel
2c02110768
linux/hardened/patches/6.4: 6.4.4-hardened1 → 6.4.6-hardened1
2023-07-26 20:52:09 -06:00
Fabián Heredia Montiel
c3fb402a65
linux/hardened/patches/6.1: 6.1.39-hardened1 → 6.1.41-hardened1
2023-07-26 20:52:09 -06:00
Fabián Heredia Montiel
26f1259268
linux/hardened/patches/5.4: 5.4.249-hardened1 → 5.4.250-hardened1
2023-07-26 20:52:09 -06:00
Fabián Heredia Montiel
12dd64a435
linux/hardened/patches/5.15: 5.15.120-hardened1 → 5.15.122-hardened1
2023-07-26 20:52:09 -06:00
Fabián Heredia Montiel
8f50487784
linux/hardened/patches/5.10: 5.10.186-hardened1 → 5.10.187-hardened1
2023-07-26 20:52:09 -06:00
Fabián Heredia Montiel
13c18a57f7
linux/hardened/patches/4.19: 4.19.288-hardened1 → 4.19.289-hardened1
2023-07-26 20:52:09 -06:00
K900
e998e5216c
linux: 6.4.5 -> 6.4.6
2023-07-25 07:37:52 +03:00
K900
04141e9828
linux: 6.1.40 -> 6.1.41
2023-07-25 07:37:47 +03:00
K900
6da374098b
linux: 5.4.249 -> 5.4.250
2023-07-25 07:37:42 +03:00
K900
c28af224b5
linux: 5.15.121 -> 5.15.122
2023-07-25 07:37:38 +03:00
K900
d5cddc3d2f
linux: 5.10.186 -> 5.10.187
2023-07-25 07:37:34 +03:00
K900
16c27410de
linux: 4.19.288 -> 4.19.289
2023-07-25 07:37:28 +03:00