data_type large_stringclasses 3
values | source large_stringclasses 29
values | code large_stringlengths 98 49.4M | filepath large_stringlengths 5 161 ⌀ | message large_stringclasses 234
values | commit large_stringclasses 234
values | subject large_stringclasses 418
values | critique large_stringlengths 101 1.26M ⌀ | metadata dict |
|---|---|---|---|---|---|---|---|---|
git_logdiff | coreboot | commit 8ecff12528a33eb2388fd39bc84b4bdc6d9894e5
Author: Jeremy Compostella <jeremy.compostella@intel.com>
Date: Wed Feb 25 11:00:08 2026 -0800
soc/intel/alderlake: Use common SPI device function driver
Switch to the common SPI device function driver implementation. This
eliminates platform-specific ... | null | soc/intel/alderlake: Use common SPI device function driver
Switch to the common SPI device function driver implementation. This
eliminates platform-specific SPI code by leveraging the common driver
with platform-specific Kconfig and macros.
This commit:
- Selects SOC_INTEL_COMMON_FEATURE_SPI_DEVFN and
SOC_INTEL_COM... | 8ecff12528a33eb2388fd39bc84b4bdc6d9894e5 | null | null | null |
git_logdiff | coreboot | commit 0aea05411dda6441a1a050012c63acea3fa63e21
Author: Jeremy Compostella <jeremy.compostella@intel.com>
Date: Wed Feb 25 11:00:07 2026 -0800
soc/intel/tigerlake: Use common SPI device function driver
Switch to the common SPI device function driver implementation. This
eliminates platform-specific ... | null | soc/intel/tigerlake: Use common SPI device function driver
Switch to the common SPI device function driver implementation. This
eliminates platform-specific SPI code by leveraging the common driver
with platform-specific Kconfig and macros.
This commit:
- Selects SOC_INTEL_COMMON_FEATURE_SPI_DEVFN and
SOC_INTEL_COM... | 0aea05411dda6441a1a050012c63acea3fa63e21 | null | null | null |
git_logdiff | coreboot | commit 47f3e7e3cca3719a10bb00c1c22f5c48c1561d37
Author: Jeremy Compostella <jeremy.compostella@intel.com>
Date: Wed Feb 25 11:00:07 2026 -0800
soc/intel/jasperlake: Use common SPI device function driver
Switch to the common SPI device function driver implementation. This
eliminates platform-specific... | null | soc/intel/jasperlake: Use common SPI device function driver
Switch to the common SPI device function driver implementation. This
eliminates platform-specific SPI code by leveraging the common driver
with platform-specific Kconfig and macros.
This commit:
- Selects SOC_INTEL_COMMON_FEATURE_SPI_DEVFN in Kconfig
- Adds ... | 47f3e7e3cca3719a10bb00c1c22f5c48c1561d37 | null | null | null |
git_logdiff | coreboot | commit 91520ab096b7468273802559ecfaf4990393f6f9
Author: Jeremy Compostella <jeremy.compostella@intel.com>
Date: Wed Feb 25 10:44:45 2026 -0800
soc/intel/common/feature/spi: Add common SPI device function driver
Add a common driver for SPI device function to bus mapping. This
eliminates code duplicat... | null | soc/intel/common/feature/spi: Add common SPI device function driver
Add a common driver for SPI device function to bus mapping. This
eliminates code duplication across Intel SoC platforms by providing
a generic implementation that can be configured via platform-specific
macros.
The driver provides:
- spi_soc_devfn_to... | 91520ab096b7468273802559ecfaf4990393f6f9 | null | null | null |
git_logdiff | coreboot | commit 0668959a929f3c3ef7eb278a7c14c40b1d725be1
Author: Jeremy Compostella <jeremy.compostella@intel.com>
Date: Wed Feb 25 10:44:18 2026 -0800
soc/intel/skylake: Use common GSPI devfn mapping
Replace platform-specific gspi.c with the common GSPI device function
mapping implementation.
Chang... | null | soc/intel/skylake: Use common GSPI devfn mapping
Replace platform-specific gspi.c with the common GSPI device function
mapping implementation.
Changes:
- Select SOC_INTEL_COMMON_FEATURE_GSPI_DEVFN in Kconfig
- Define SOC_GSPI_DEVFN(n) macro in pci_devs.h
- Remove platform-specific gspi.c file
Change-Id: Ib7c8d9e0f1a... | 0668959a929f3c3ef7eb278a7c14c40b1d725be1 | null | null | null |
git_logdiff | grub | commit ce6f2b57f5450a8239022dcbfb2d750f273b83cb
Author: Nicholas Vinson <nvinson234@gmail.com>
Date: Tue Feb 24 19:48:42 2026 -0500
util/resolve: Save str[r]chr() ret val to const data ptr
With glibc-2.43 implementing the C23 standard, strrchr() and strchr()
now return "const char *" when its first ... | null | util/resolve: Save str[r]chr() ret val to const data ptr
With glibc-2.43 implementing the C23 standard, strrchr() and strchr()
now return "const char *" when its first argument is "const char *".
The fix is update all pointers receiving strrchr() and strchr()'s return
values so that they are now "const char *" instea... | ce6f2b57f5450a8239022dcbfb2d750f273b83cb | null | null | null |
git_logdiff | grub | commit 9f4a586f1227a8287e1d6acd95893f6098756ee2
Author: Nicholas Vinson <nvinson234@gmail.com>
Date: Tue Feb 24 19:48:41 2026 -0500
util/probe: Save strrchr() ret val to const data ptr
With glibc-2.43 implementing the C23 standard, strrchr() now returns
"const char *" when its first argument is "con... | null | util/probe: Save strrchr() ret val to const data ptr
With glibc-2.43 implementing the C23 standard, strrchr() now returns
"const char *" when its first argument is "const char *".
The fix is update all pointers receiving strrchr()'s return value so
that they are now "const char *" instead of "char *".
Signed-off-by:... | 9f4a586f1227a8287e1d6acd95893f6098756ee2 | null | null | null |
git_logdiff | grub | commit 675d8581037dc8996cf6db21a61d26e28f7d44c1
Author: Nicholas Vinson <nvinson234@gmail.com>
Date: Tue Feb 24 19:48:39 2026 -0500
osdep/linux/ofpath: Update strstr() calls
With C23, strstr() returns a "const char *" if its first argument is
"const char *", and these changes are implemented in glib... | null | osdep/linux/ofpath: Update strstr() calls
With C23, strstr() returns a "const char *" if its first argument is
"const char *", and these changes are implemented in glibc-2.43.
As a result, the first strstr() call in check_sas() now returns a "const
char *" instead of "char *" because sysfs_path is a "const char *". T... | 675d8581037dc8996cf6db21a61d26e28f7d44c1 | null | null | null |
git_logdiff | grub | commit e37d0215830b1221c7a0c62f4642716b142f8f5c
Author: Avnish Chouhan <avnish@linux.ibm.com>
Date: Mon Jan 12 23:20:14 2026 +0530
kern/ieee1275/openfw: Add a check for invalid partition number
The grub_strtoul() may fail in several scenarios like invalid input,
overflow, etc. Lack of proper check m... | null | kern/ieee1275/openfw: Add a check for invalid partition number
The grub_strtoul() may fail in several scenarios like invalid input,
overflow, etc. Lack of proper check may lead to unexpected failures
in the code further.
Signed-off-by: Avnish Chouhan <avnish@linux.ibm.com>
Reviewed-by: Daniel Kiper <daniel.kiper@orac... | e37d0215830b1221c7a0c62f4642716b142f8f5c | null | null | null |
git_logdiff | grub | commit f94eae0f8de428fd25a4c923662cd36ed552b486
Author: Sudhakar Kuppusamy <sudhakar@linux.ibm.com>
Date: Wed Dec 24 17:58:59 2025 +0530
grub-mkimage: Do not generate empty SBAT metadata
When creating core.elf with SBAT the grub-mkimage does not check if
an SBAT metadata file contains at least an SB... | null | grub-mkimage: Do not generate empty SBAT metadata
When creating core.elf with SBAT the grub-mkimage does not check if
an SBAT metadata file contains at least an SBAT header or not. It leads to
adding an empty SBAT ELF note for PowerPC and the .sbat section for EFI.
Fix this by checking the SBAT metadata file size agai... | f94eae0f8de428fd25a4c923662cd36ed552b486 | null | null | null |
git_logdiff | grub | commit 51ebc6f677e7216c8f5a77dd204b2961f27a7c93
Author: Srish Srinivasan <ssrish@linux.ibm.com>
Date: Fri Jan 2 15:57:31 2026 +0530
tests: Add functional tests for ecb/cbc helpers
Test the following helper functions using AES with 128, 192, and
256 bit keys:
- grub_crypto_ecb_encrypt(),
... | null | tests: Add functional tests for ecb/cbc helpers
Test the following helper functions using AES with 128, 192, and
256 bit keys:
- grub_crypto_ecb_encrypt(),
- grub_crypto_ecb_decrypt(),
- grub_crypto_cbc_encrypt(),
- grub_crypto_cbc_decrypt().
Signed-off-by: Srish Srinivasan <ssrish@linux.ibm.com>
Reviewed-by:... | 51ebc6f677e7216c8f5a77dd204b2961f27a7c93 | null | null | null |
git_logdiff | grub | commit caaf50b9affbd4c9e7313a4fdc03c4fa439a6a1f
Author: Srish Srinivasan <ssrish@linux.ibm.com>
Date: Mon Dec 8 15:51:29 2025 +0530
osdep/aros/hostdisk: Fix use-after-free bug during MsgPort deletion
... in function grub_util_fd_open() when creation of an I/O request or
opening a device fails. The "... | null | osdep/aros/hostdisk: Fix use-after-free bug during MsgPort deletion
... in function grub_util_fd_open() when creation of an I/O request or
opening a device fails. The "ret", the file descriptor, will be freed
before its associated MsgPort is deleted resulting in a use-after-free
condition.
Fix this issue by freeing "... | caaf50b9affbd4c9e7313a4fdc03c4fa439a6a1f | null | null | null |
git_logdiff | grub | commit 25b7f6b9344a4bac18c26ce143a156ac2bcb3ec4
Author: Radoslav Kolev <radoslav.kolev@suse.com>
Date: Fri Dec 19 16:25:03 2025 +0200
blsuki: Error out if unexpected arguments are supplied
This can be especially helpful, as the Fedora version of the blscfg
actually made use of positional arguments, ... | null | blsuki: Error out if unexpected arguments are supplied
This can be especially helpful, as the Fedora version of the blscfg
actually made use of positional arguments, but current implementation
switched to parameters. For example what used to be "blscfg (hd0,gpt2)/..."
now should be "blscfg --path (hd0,gpt2)/...)". In ... | 25b7f6b9344a4bac18c26ce143a156ac2bcb3ec4 | null | null | null |
git_logdiff | limine | commit 16a803ef3799b70fb286f088be267bb1a2d5daab
Author: Mintsuki <mintsuki@protonmail.com>
Date: Thu Feb 26 00:47:37 2026 +0100
Revert "sys/pic: Reinitialise PICs in pic_flush() to clear stale IRR/ISR state"
This reverts commit bfde2899fcf42c73b9e8812a3f95c3991039b364.
diff --git a/common/sys/idt.c b/c... | null | Revert "sys/pic: Reinitialise PICs in pic_flush() to clear stale IRR/ISR state"
This reverts commit bfde2899fcf42c73b9e8812a3f95c3991039b364. | 16a803ef3799b70fb286f088be267bb1a2d5daab | null | null | null |
git_logdiff | limine | commit 5979b35b09cd72f35c0beaa6d1be13fb017b9bd9
Author: Mintsuki <mintsuki@protonmail.com>
Date: Tue Feb 24 21:31:04 2026 +0100
sys/lapic: Preserve LVT entries with SMI/INIT/reserved delivery modes
diff --git a/common/sys/lapic.c b/common/sys/lapic.c
index ddaa7f1..0efc121 100644
--- a/common/sys/lapic.c
+++ b/... | null | sys/lapic: Preserve LVT entries with SMI/INIT/reserved delivery modes | 5979b35b09cd72f35c0beaa6d1be13fb017b9bd9 | null | null | null |
git_logdiff | limine | commit 7e3d6448b7c49da261363e0b0469584247518281
Author: Mintsuki <mintsuki@protonmail.com>
Date: Tue Feb 24 21:30:56 2026 +0100
sys/pic: Reinitialise PICs in pic_flush() to clear stale IRR/ISR state
diff --git a/common/sys/idt.c b/common/sys/idt.c
index 4669cf9..d8fd2b3 100644
--- a/common/sys/idt.c
+++ b/commo... | null | sys/pic: Reinitialise PICs in pic_flush() to clear stale IRR/ISR state | 7e3d6448b7c49da261363e0b0469584247518281 | null | null | null |
git_logdiff | limine | commit d01e32eea5cd69f930e9be16f70361e9e3a04d50
Author: Mintsuki <mintsuki@protonmail.com>
Date: Tue Feb 24 06:51:21 2026 +0100
sys/cpu: Fix rdtsc_usec() intermediate overflow
diff --git a/common/sys/cpu.h b/common/sys/cpu.h
index 1d445b8..41c7576 100644
--- a/common/sys/cpu.h
+++ b/common/sys/cpu.h
@@ -407,7 +... | null | sys/cpu: Fix rdtsc_usec() intermediate overflow | d01e32eea5cd69f930e9be16f70361e9e3a04d50 | null | null | null |
git_logdiff | limine | commit a6beb8167ffd4842137cfc6d565198ab6ebdaf17
Author: Mintsuki <mintsuki@protonmail.com>
Date: Mon Feb 23 19:31:08 2026 +0100
sys/iommu: Remove VT-d polling timeout and fix poll loop order
diff --git a/common/sys/iommu.c b/common/sys/iommu.c
index c949040..16cca3a 100644
--- a/common/sys/iommu.c
+++ b/common/... | null | sys/iommu: Remove VT-d polling timeout and fix poll loop order | a6beb8167ffd4842137cfc6d565198ab6ebdaf17 | null | null | null |
git_logdiff | limine | commit 9456dcb1d96a9628e090eaa62396782cb5389e4d
Author: Mintsuki <mintsuki@protonmail.com>
Date: Mon Feb 23 15:39:59 2026 +0100
sys/smp: Add xAPIC ICR delivery status checks to INIT-SIPI-SIPI sequence
diff --git a/common/sys/lapic.c b/common/sys/lapic.c
index 5579a00..ddaa7f1 100644
--- a/common/sys/lapic.c
+++... | null | sys/smp: Add xAPIC ICR delivery status checks to INIT-SIPI-SIPI sequence | 9456dcb1d96a9628e090eaa62396782cb5389e4d | null | null | null |
git_logdiff | limine | commit 37eddc6ddb13a1b8227cbccdd26388744b72e83a
Author: Mintsuki <mintsuki@protonmail.com>
Date: Mon Feb 23 15:39:55 2026 +0100
sys/iommu: Fix VT-d disable order to TE, IRE, QIE
diff --git a/common/sys/iommu.c b/common/sys/iommu.c
index 6dd4e1a..c949040 100644
--- a/common/sys/iommu.c
+++ b/common/sys/iommu.c
@... | null | sys/iommu: Fix VT-d disable order to TE, IRE, QIE | 37eddc6ddb13a1b8227cbccdd26388744b72e83a | null | null | null |
git_logdiff | limine | commit b2c265f2be4eff4575cd199f352b93fc449e1e16
Author: Mintsuki <mintsuki@protonmail.com>
Date: Sun Feb 22 17:33:34 2026 +0100
protos/multiboot: Try to disable x2APIC before kernel entry
diff --git a/common/protos/multiboot1.c b/common/protos/multiboot1.c
index 87263c8..65d1868 100644
--- a/common/protos/multi... | null | protos/multiboot: Try to disable x2APIC before kernel entry | b2c265f2be4eff4575cd199f352b93fc449e1e16 | null | null | null |
git_logdiff | limine | commit fe4544b612e03b6403369b07b487d1887cb83928
Author: Mintsuki <mintsuki@protonmail.com>
Date: Sun Feb 22 17:10:53 2026 +0100
Revert "sys/exceptions: Remove unnecessary exception number bounds check"
This reverts commit cdc875073c67b4858bace7d8f032e804500ccac5.
diff --git a/common/sys/exceptions.s2.c... | null | Revert "sys/exceptions: Remove unnecessary exception number bounds check"
This reverts commit cdc875073c67b4858bace7d8f032e804500ccac5. | fe4544b612e03b6403369b07b487d1887cb83928 | null | null | null |
git_logdiff | u-boot | commit 3ee1408eeb7352d770bbf063df85fa23cd6b79a4
Author: Peng Fan <peng.fan@nxp.com>
Date: Tue Feb 10 16:12:14 2026 +0800
firmware: scmi: Validate device tree node before setup channel
SCMI base protocol device does not have a device tree, it should use and
need to use the agent base channel.
... | null | firmware: scmi: Validate device tree node before setup channel
SCMI base protocol device does not have a device tree, it should use and
need to use the agent base channel.
For scmi_base.[x], there is no real device tree node for it. ofnode_null() is
assigned as the device tree node for scmi base protocol device:
comm... | 3ee1408eeb7352d770bbf063df85fa23cd6b79a4 | null | null | null |
git_logdiff | u-boot | commit 0e61fc5364dc6b4af88b44ea2e1aa9d84c9f1ca7
Author: Kaustabh Chakraborty <kauschluss@disroot.org>
Date: Tue Feb 24 21:07:10 2026 +0530
board: samsung: exynos-mobile: add EFI capsule update support
Add support for EFI capsule updates via U-Boot's DFU. This flashes the
boot partition with the new ... | null | board: samsung: exynos-mobile: add EFI capsule update support
Add support for EFI capsule updates via U-Boot's DFU. This flashes the
boot partition with the new image provided in the capsule.
Signed-off-by: Kaustabh Chakraborty <kauschluss@disroot.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> | 0e61fc5364dc6b4af88b44ea2e1aa9d84c9f1ca7 | null | null | null |
git_logdiff | u-boot | commit db0fe21bd38f27f570ce16670ccad567efd596f4
Author: Kaustabh Chakraborty <kauschluss@disroot.org>
Date: Tue Feb 24 21:07:09 2026 +0530
board: samsung: exynos-mobile: use blkmap for booting from userdata subpartitions
Some distributions tend to provide a single combined image with EFS and
the sys... | null | board: samsung: exynos-mobile: use blkmap for booting from userdata subpartitions
Some distributions tend to provide a single combined image with EFS and
the system root filesystem. Flashing it as-is in a single partition
(usually done in userdata partition as it is the largest) is not
bootable as U-Boot does not unde... | db0fe21bd38f27f570ce16670ccad567efd596f4 | null | null | null |
git_logdiff | u-boot | commit e4001865ff387b928ea3d422d673dcc7389f8665
Author: Kaustabh Chakraborty <kauschluss@disroot.org>
Date: Mon Feb 23 19:55:24 2026 +0530
phy: samsung: add support for exynos7870 USB PHY
The USB PHY used by the Exynos7870 SoC has a single USB 2.0 interface.
Add its dedicated variant enum, compatibl... | null | phy: samsung: add support for exynos7870 USB PHY
The USB PHY used by the Exynos7870 SoC has a single USB 2.0 interface.
Add its dedicated variant enum, compatible, and init/exit functions.
The PHY enable bit of Exynos7870's PHY is different in contrast to that
of Exynos850 and most Exynos PHYs. To allow this change, ... | e4001865ff387b928ea3d422d673dcc7389f8665 | null | null | null |
git_logdiff | u-boot | commit ae1e081f83fb4b4d79e32f1bdcea3e47519ce05c
Author: Kaustabh Chakraborty <kauschluss@disroot.org>
Date: Mon Feb 23 19:55:23 2026 +0530
phy: samsung: add enum for variants based on SoCs
The variant enum is used to uniquely identify which SoC the PHY block
belongs to. It is initially set in the ma... | null | phy: samsung: add enum for variants based on SoCs
The variant enum is used to uniquely identify which SoC the PHY block
belongs to. It is initially set in the match table, along with the
compatible string, it gets copied to driver data struct during probe.
SoC specific functions must only be called if the respective ... | ae1e081f83fb4b4d79e32f1bdcea3e47519ce05c | null | null | null |
git_logdiff | u-boot | commit c61d6f67f46f05149182b33c3c0ba5d9b6b46889
Author: Gatien Chevallier <gatien.chevallier@foss.st.com>
Date: Tue Feb 10 11:26:05 2026 +0100
ARM: stm32mp: Check secure state first
Secure state must be checked before handling semaphores,
otherwise it can cause an IAC.
Signed-off-by: Gatien... | null | ARM: stm32mp: Check secure state first
Secure state must be checked before handling semaphores,
otherwise it can cause an IAC.
Signed-off-by: Gatien Chevallier <gatien.chevallier@foss.st.com>
Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com> | c61d6f67f46f05149182b33c3c0ba5d9b6b46889 | null | null | null |
git_logdiff | u-boot | commit 9d3a9080c9fb57186dd90be4cfa8ac9759f0d823
Author: Gatien Chevallier <gatien.chevallier@foss.st.com>
Date: Tue Feb 10 11:26:04 2026 +0100
ARM: stm32mp: Fix CID and semaphore check
Peripheral holding CID0 cannot be accessed, remove this completely
incorrect check. While there, fix and simplify t... | null | ARM: stm32mp: Fix CID and semaphore check
Peripheral holding CID0 cannot be accessed, remove this completely
incorrect check. While there, fix and simplify the semaphore checking
that should be performed when the CID filtering is enabled.
Signed-off-by: Gatien Chevallier <gatien.chevallier@foss.st.com>
Signed-off-by:... | 9d3a9080c9fb57186dd90be4cfa8ac9759f0d823 | null | null | null |
git_logdiff | u-boot | commit bd6fd26f150c655d36735285cb900445a2b399a3
Author: Thomas Bourgoin <thomas.bourgoin@foss.st.com>
Date: Wed Feb 4 11:20:50 2026 +0100
stm32mp: cmd_stm32key: add support of ADAC public key hash
Add support of ADAC-PKH for STM32MP21.
Signed-off-by: Thomas Bourgoin <thomas.bourgoin@foss.st.com... | null | stm32mp: cmd_stm32key: add support of ADAC public key hash
Add support of ADAC-PKH for STM32MP21.
Signed-off-by: Thomas Bourgoin <thomas.bourgoin@foss.st.com>
Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com> | bd6fd26f150c655d36735285cb900445a2b399a3 | null | null | null |
git_logdiff | u-boot | commit c258621b5ef6c1a759198b603e9bb30a928ca2ef
Author: Gwenael Treuveur <gwenael.treuveur@foss.st.com>
Date: Wed Feb 4 11:20:49 2026 +0100
stm32mp: cmd_stm32key: add support of remoteproc firmware public key
Add support of RPROC-FW-PKH for STM32MP25, STM32MP23 and STM32MP21.
Signed-off-by: Gwe... | null | stm32mp: cmd_stm32key: add support of remoteproc firmware public key
Add support of RPROC-FW-PKH for STM32MP25, STM32MP23 and STM32MP21.
Signed-off-by: Gwenael Treuveur <gwenael.treuveur@foss.st.com>
Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.c... | c258621b5ef6c1a759198b603e9bb30a928ca2ef | null | null | null |
git_logdiff | u-boot | commit d8a0db45367acd94c022f2d1380857e98959c7b2
Author: Thomas Bourgoin <thomas.bourgoin@foss.st.com>
Date: Wed Feb 4 11:20:48 2026 +0100
stm32mp: cmd_stm32key: add support of remoteproc firmware encryption key
Add support of RPROC-FW-KEY for STM32MP25, STM32MP23 and STM32MP21.
Signed-off-by: T... | null | stm32mp: cmd_stm32key: add support of remoteproc firmware encryption key
Add support of RPROC-FW-KEY for STM32MP25, STM32MP23 and STM32MP21.
Signed-off-by: Thomas Bourgoin <thomas.bourgoin@foss.st.com>
Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st... | d8a0db45367acd94c022f2d1380857e98959c7b2 | null | null | null |
git_logdiff | u-boot | commit cbd3977207f3844ce640f57e31eca73a1c8ddae0
Author: Thomas Bourgoin <thomas.bourgoin@foss.st.com>
Date: Wed Feb 4 11:20:47 2026 +0100
stm32mp: cmd_stm32key: add support of OTP key format 2
Add support of OTP key format 2 used by OP-TEE.
Key formats are describes in the STM32MPUs references manua... | null | stm32mp: cmd_stm32key: add support of OTP key format 2
Add support of OTP key format 2 used by OP-TEE.
Key formats are describes in the STM32MPUs references manuals
section OTP mapping.
Signed-off-by: Thomas Bourgoin <thomas.bourgoin@foss.st.com>
Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Reviewed-b... | cbd3977207f3844ce640f57e31eca73a1c8ddae0 | null | null | null |
git_logdiff | u-boot | commit dcb304943e21c24f8e170d40370286f8d30c2687
Author: Thomas Bourgoin <thomas.bourgoin@foss.st.com>
Date: Wed Feb 4 11:20:46 2026 +0100
stm32mp: cmd_stm32key: add support of STM32MP21x SoC
Update stm32key to support stm32mp21 OTP mapping.
Create a new list of key to support the following differenc... | null | stm32mp: cmd_stm32key: add support of STM32MP21x SoC
Update stm32key to support stm32mp21 OTP mapping.
Create a new list of key to support the following differences :
- STM32MP21x SoC support 128b and 25b FSBL encryption keys.
- OEM-KEY1 and OEM-KEY2 used for authentication are in different OTP
from STM32MP25 ... | dcb304943e21c24f8e170d40370286f8d30c2687 | null | null | null |
git_logdiff | u-boot | commit ac7f28523cd4fc5c01bc4a99e0ed856b32d1cf8d
Author: Patrice Chotard <patrice.chotard@foss.st.com>
Date: Wed Feb 4 11:16:08 2026 +0100
stm32mp1: Add check on syscon_get_first_range() return value
syscon_get_first_range()'s return value is used as base address to perform
a read, without any checks... | null | stm32mp1: Add check on syscon_get_first_range() return value
syscon_get_first_range()'s return value is used as base address to perform
a read, without any checks.
In case stmp32mp_syscon is not binded, syscon_get_first_range() returns
-ENODEV which leads to a "Synchronous abort".
Add syscon_get_first_range() check o... | ac7f28523cd4fc5c01bc4a99e0ed856b32d1cf8d | null | null | null |
git_logdiff | u-boot | commit ab965d31a26610a5ede267f1962956c9deb9e913
Author: Patrice Chotard <patrice.chotard@foss.st.com>
Date: Wed Feb 4 11:16:07 2026 +0100
stm32mp2: Add check on syscon_get_first_range() return value
syscon_get_first_range()'s return value is used as base address to perform
a read, without any checks... | null | stm32mp2: Add check on syscon_get_first_range() return value
syscon_get_first_range()'s return value is used as base address to perform
a read, without any checks.
In case stmp32mp_syscon is not binded, syscon_get_first_range() returns
-ENODEV which leads to a "Synchronous abort".
Add syscon_get_first_range() check o... | ab965d31a26610a5ede267f1962956c9deb9e913 | null | null | null |
git_logdiff | edk2 | commit 935518abbb8e0cc7a5d38324952703667615196c
Author: Michael D Kinney <michael.d.kinney@intel.com>
Date: Wed Feb 25 13:27:07 2026 -0800
MdeModulePkg/Include/Guid: Add back include guard
Add include guards back to include files that use the same
include guard macro in BaseTools/Source/C/Include/Co... | null | MdeModulePkg/Include/Guid: Add back include guard
Add include guards back to include files that use the same
include guard macro in BaseTools/Source/C/Include/Common
and MdePkg or MdeModulePkg.
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> | 935518abbb8e0cc7a5d38324952703667615196c | null | null | null |
git_logdiff | edk2 | commit 21e021ffbaa738956fb8142cf5cf215eeb71e50b
Author: Michael D Kinney <michael.d.kinney@intel.com>
Date: Wed Feb 25 12:53:53 2026 -0800
MdePkg/Include/Uefi: Add back include guard
Add include guards back to include files that use the same
include guard macro in BaseTools/Source/C/Include/Common
... | null | MdePkg/Include/Uefi: Add back include guard
Add include guards back to include files that use the same
include guard macro in BaseTools/Source/C/Include/Common
and MdePkg or MdeModulePkg.
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> | 21e021ffbaa738956fb8142cf5cf215eeb71e50b | null | null | null |
git_logdiff | edk2 | commit 3eb2ff24b9fe5c0ea8d543e1deb7c6efac610655
Author: Michael D Kinney <michael.d.kinney@intel.com>
Date: Wed Feb 25 12:53:28 2026 -0800
BaseTools/Source/C/Include/Common: Add back include guard
Add include guards back to include files that use the same
include guard macro in BaseTools/Source/C/In... | null | BaseTools/Source/C/Include/Common: Add back include guard
Add include guards back to include files that use the same
include guard macro in BaseTools/Source/C/Include/Common
and MdePkg or MdeModulePkg.
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> | 3eb2ff24b9fe5c0ea8d543e1deb7c6efac610655 | null | null | null |
git_logdiff | edk2 | commit e9119475e1fdf1669891cd3e62c3c9617c6ee98f
Author: Star Zeng <star.zeng@intel.com>
Date: Tue Jan 27 10:45:25 2026 +0800
UefiCpuPkg CpuPageTableLib.h: Correct PageTableParse() Map para to OUT
Follow the function header and implementation of PageTableParse() to
correct its Map parameter to OUT.
... | null | UefiCpuPkg CpuPageTableLib.h: Correct PageTableParse() Map para to OUT
Follow the function header and implementation of PageTableParse() to
correct its Map parameter to OUT.
Signed-off-by: Star Zeng <star.zeng@intel.com> | e9119475e1fdf1669891cd3e62c3c9617c6ee98f | null | null | null |
git_logdiff | edk2 | commit 218deb33ebf7b8021ef400d0f7d416ef3ebba572
Author: Chao Li <lichao@loongson.cn>
Date: Wed Feb 25 15:20:24 2026 +0800
UefiCpuPkg: Rename the LoongArch floating point CSR register 0 name
Currently, the name of LoongArch floating-point CSR register 0 uses the
register number, it has been renamed t... | null | UefiCpuPkg: Rename the LoongArch floating point CSR register 0 name
Currently, the name of LoongArch floating-point CSR register 0 uses the
register number, it has been renamed to an alias to improve readability
and compiler compatibility.
Signed-off-by: Chao Li <lichao@loongson.cn>
Cc: Ray Ni <ray.ni@intel.com>
Cc: ... | 218deb33ebf7b8021ef400d0f7d416ef3ebba572 | null | null | null |
git_logdiff | edk2 | commit 9d583d770b1ab7f50b6a8c19090c97ca3147250f
Author: Benjamin Doron <benjamin.doron@9elements.com>
Date: Mon Jul 21 10:47:24 2025 -0400
StandaloneMmPkg/Core: Print discovered drivers that weren't dispatched
This is very useful debugging information. It often helps debug where
driver load failures... | null | StandaloneMmPkg/Core: Print discovered drivers that weren't dispatched
This is very useful debugging information. It often helps debug where
driver load failures started, which dependency was unmet.
Perhaps this was commented out while the standalone MM core was
developed.
Signed-off-by: Benjamin Doron <benjamin.dor... | 9d583d770b1ab7f50b6a8c19090c97ca3147250f | null | null | null |
git_logdiff | asterinas | commit e94a000b1193238b8e8e0ee237451c0fcf13150b
Author: Ruihan Li <lrh2000@pku.edu.cn>
Date: Thu Feb 12 22:40:54 2026 +0800
Enable regression tests
diff --git a/test/initramfs/src/apps/security/capability/capset.c b/test/initramfs/src/apps/security/capability/capset.c
new file mode 100644
index 0000000..04c04be... | null | Enable regression tests | e94a000b1193238b8e8e0ee237451c0fcf13150b | null | null | null |
git_logdiff | asterinas | commit 4c09e076957fed36bd0d2094ec068c2eca465558
Author: Ruihan Li <lrh2000@pku.edu.cn>
Date: Mon Feb 9 23:58:37 2026 +0800
Fix `cap{get,set}` syscall behavior
diff --git a/kernel/libs/aster-rights/src/lib.rs b/kernel/libs/aster-rights/src/lib.rs
index f2d9fa1..bf40ca2 100644
--- a/kernel/libs/aster-rights/src/l... | null | Fix `cap{get,set}` syscall behavior | 4c09e076957fed36bd0d2094ec068c2eca465558 | null | null | null |
git_logdiff | asterinas | commit eede76b714a483ec6752eaeefcc61aa06e196dc9
Author: Ruihan Li <lrh2000@pku.edu.cn>
Date: Mon Feb 9 23:58:33 2026 +0800
Update capabilities at `execve()`
diff --git a/kernel/src/process/credentials/credentials_.rs b/kernel/src/process/credentials/credentials_.rs
index 5b261f7..2556dba 100644
--- a/kernel/src... | null | Update capabilities at `execve()` | eede76b714a483ec6752eaeefcc61aa06e196dc9 | null | null | null |
git_logdiff | asterinas | commit f1711727e3d5377480d09d07419f9b445c1076c9
Author: Ruihan Li <lrh2000@pku.edu.cn>
Date: Sat Feb 14 15:38:36 2026 +0800
Add `Cap*` entries to `/proc/[pid]/status`
diff --git a/kernel/src/fs/procfs/pid/task/status.rs b/kernel/src/fs/procfs/pid/task/status.rs
index 15121b4..b863cc2 100644
--- a/kernel/src/fs/... | null | Add `Cap*` entries to `/proc/[pid]/status` | f1711727e3d5377480d09d07419f9b445c1076c9 | null | null | null |
git_logdiff | asterinas | commit 8a3c94a09f0a8813096eeaadaae65cbea92e898c
Author: Ruihan Li <lrh2000@pku.edu.cn>
Date: Fri Feb 13 10:15:25 2026 +0800
Fix some minor problems
diff --git a/kernel/src/process/credentials/credentials_.rs b/kernel/src/process/credentials/credentials_.rs
index 140fa96..5b261f7 100644
--- a/kernel/src/process/... | null | Fix some minor problems | 8a3c94a09f0a8813096eeaadaae65cbea92e898c | null | null | null |
git_logdiff | asterinas | commit 97bc17fa58ff2d3be555c48be8973e4d1c924b94
Author: Xinyi Wan <64517311+rikosellic@users.noreply.github.com>
Date: Thu Feb 19 06:48:17 2026 +0800
Fix typos in ostd documentation
diff --git a/ostd/src/arch/x86/boot/mod.rs b/ostd/src/arch/x86/boot/mod.rs
index 622658a..8f22467 100644
--- a/ostd/src/arch/x86/b... | null | Fix typos in ostd documentation | 97bc17fa58ff2d3be555c48be8973e4d1c924b94 | null | null | null |
git_logdiff | asterinas | commit 8b7b915b2b405de22fea15e728267caf36950518
Author: Tate, Hongliang Tian <tate.thl@antgroup.com>
Date: Sat Feb 14 13:57:35 2026 +0800
Extend the doc of the `[ostd::main]` attribute macro
diff --git a/ostd/libs/ostd-macros/src/lib.rs b/ostd/libs/ostd-macros/src/lib.rs
index 39303cd..8e1a613 100644
--- a/ostd... | null | Extend the doc of the `[ostd::main]` attribute macro | 8b7b915b2b405de22fea15e728267caf36950518 | null | null | null |
git_logdiff | asterinas | commit 374ff99b5e9066a26fa0fff4a122f793ad1ead63
Author: Jianfeng Jiang <jiangjianfeng.jjf@antgroup.com>
Date: Fri Feb 13 03:13:58 2026 +0000
Remove incorrect unreachable in ostd::main
diff --git a/ostd/libs/ostd-macros/src/lib.rs b/ostd/libs/ostd-macros/src/lib.rs
index 18be1e9..39303cd 100644
--- a/ostd/libs/o... | null | Remove incorrect unreachable in ostd::main | 374ff99b5e9066a26fa0fff4a122f793ad1ead63 | null | null | null |
git_logdiff | asterinas | commit 68549f7d27263589e00c1099509f5f31c29669f6
Author: Jianfeng Jiang <jiangjianfeng.jjf@antgroup.com>
Date: Fri Feb 13 03:13:29 2026 +0000
Avoid directly accessing SCHEDULER singleton
diff --git a/ostd/src/task/scheduler/fifo_scheduler.rs b/ostd/src/task/scheduler/fifo_scheduler.rs
index 41cc3c0..96f5dba 1006... | null | Avoid directly accessing SCHEDULER singleton | 68549f7d27263589e00c1099509f5f31c29669f6 | null | null | null |
git_logdiff | asterinas | commit dda19c09dcd2fb335e1f442188d561fc788bb1d7
Author: Jianfeng Jiang <jiangjianfeng.jjf@antgroup.com>
Date: Thu Feb 12 09:24:58 2026 +0000
Use local ostd for `cargo osdk new` when OSDK_LOCAL_DEV=1
diff --git a/osdk/src/util.rs b/osdk/src/util.rs
index fb0202d..a782ed1 100644
--- a/osdk/src/util.rs
+++ b/osdk/... | null | Use local ostd for `cargo osdk new` when OSDK_LOCAL_DEV=1 | dda19c09dcd2fb335e1f442188d561fc788bb1d7 | null | null | null |
git_logdiff | asterinas | commit 6882eb73f4d0d5a934c8c89cb7897dc8213e1e37
Author: Chaoqun Zheng <chaoqun_zh@foxmail.com>
Date: Fri Jan 9 12:48:19 2026 +0800
Fix the issue of `InodeBlockManager::read_blocks`
diff --git a/kernel/comps/block/src/bio.rs b/kernel/comps/block/src/bio.rs
index 66ba34c..2b165fa 100644
--- a/kernel/comps/block/s... | null | Fix the issue of `InodeBlockManager::read_blocks` | 6882eb73f4d0d5a934c8c89cb7897dc8213e1e37 | null | null | null |
git_logdiff | asterinas | commit f4102e7db42d12dddcc2a3d689027e7be46434e9
Author: Ruihan Li <lrh2000@pku.edu.cn>
Date: Wed Feb 11 17:28:13 2026 +0800
Rename `call_ostd_main` to `start_kernel`
diff --git a/ostd/src/arch/loongarch/boot/mod.rs b/ostd/src/arch/loongarch/boot/mod.rs
index 7620b26..a43e396 100644
--- a/ostd/src/arch/loongarch... | null | Rename `call_ostd_main` to `start_kernel` | f4102e7db42d12dddcc2a3d689027e7be46434e9 | null | null | null |
git_logdiff | asterinas | commit 195ff99138621b55c0645930eca28790b4cb738e
Author: Ruihan Li <lrh2000@pku.edu.cn>
Date: Tue Feb 10 23:45:43 2026 +0800
Mark `call_ostd_main` as unsafe
diff --git a/ostd/src/arch/loongarch/boot/mod.rs b/ostd/src/arch/loongarch/boot/mod.rs
index 86e06ae..7620b26 100644
--- a/ostd/src/arch/loongarch/boot/mod.... | null | Mark `call_ostd_main` as unsafe | 195ff99138621b55c0645930eca28790b4cb738e | null | null | null |
git_logdiff | asterinas | commit e6104161b7f83e631a1969110d0b7c3b45770ffd
Author: Xinyi Yu <1809327837@qq.com>
Date: Mon Feb 9 11:52:05 2026 +0000
Prevents ID allocation beyond bitmap bounds
diff --git a/kernel/src/fs/utils/id_bitmap.rs b/kernel/src/fs/utils/id_bitmap.rs
index 1a7f8c4..768db04 100644
--- a/kernel/src/fs/utils/id_bitmap.... | null | Prevents ID allocation beyond bitmap bounds | e6104161b7f83e631a1969110d0b7c3b45770ffd | null | null | null |
git_logdiff | asterinas | commit c9032ad97cbc002afcc5eab41c837a850fb70aa0
Author: Ruihan Li <lrh2000@pku.edu.cn>
Date: Sat Feb 7 23:45:31 2026 +0800
Fix `redundant_test_prefix`
diff --git a/kernel/libs/cpio-decoder/src/test.rs b/kernel/libs/cpio-decoder/src/test.rs
index 32b143d..1aecd1a 100644
--- a/kernel/libs/cpio-decoder/src/test.rs... | null | Fix `redundant_test_prefix` | c9032ad97cbc002afcc5eab41c837a850fb70aa0 | null | null | null |
git_logdiff | musl | commit 1b76ff0767d01df72f692806ee5adee13c67ef88
Author: Alex Rønne Petersen <alex@alexrp.com>
Date: Sun Oct 12 05:35:19 2025 +0200
s390x: shuffle register usage in __tls_get_offset to avoid r0 as address
This fixes an error in 6af4f25b899e89e4b91f8c197ae5a6ce04bcce7b: The
r0 register is special in a... | null | s390x: shuffle register usage in __tls_get_offset to avoid r0 as address
This fixes an error in 6af4f25b899e89e4b91f8c197ae5a6ce04bcce7b: The
r0 register is special in addressing modes on s390x and is interpreted
as constant zero, i.e. lg %r5, 8(%r0) would effectively become lg %r5,
8. So care should be taken to never... | 1b76ff0767d01df72f692806ee5adee13c67ef88 | null | null | null |
git_logdiff | musl | commit 0ccaf0572e9cccda2cced0f7ee659af4c1c6679a
Author: Rich Felker <dalias@aerifal.cx>
Date: Fri Sep 19 18:35:19 2025 -0400
printf: fix buffer overflow in floating point decimal formatting
commit f96e47a26102d537c29435f0abf9ec94676a030e introduced a new
overflow past the end of the base-1e9 buffer ... | null | printf: fix buffer overflow in floating point decimal formatting
commit f96e47a26102d537c29435f0abf9ec94676a030e introduced a new
overflow past the end of the base-1e9 buffer for floating point to
decimal conversion while fixing a different overflow below the start
of the buffer.
this bug has not been present in any ... | 0ccaf0572e9cccda2cced0f7ee659af4c1c6679a | null | null | null |
git_logdiff | musl | commit 0b86d60badad6a69b37fc06d18b5763fbbf47b58
Author: Alex Rønne Petersen <alex@alexrp.com>
Date: Sat Jun 29 04:04:34 2024 +0200
riscv: fix setjmp assembly when compiling for ilp32f/lp64f.
per the psABI, floating point register contents beyond the register
size of the targeted ABI variant are neve... | null | riscv: fix setjmp assembly when compiling for ilp32f/lp64f.
per the psABI, floating point register contents beyond the register
size of the targeted ABI variant are never call-saved, so no
hwcap-conditional logic is needed here and the assembly-time
conditions are based purely on ABI variant macros, not the targeted
I... | 0b86d60badad6a69b37fc06d18b5763fbbf47b58 | null | null | null |
git_logdiff | musl | commit f6944eb3c4ce1c97dc39dc36d32390dc9f70b67b
Author: Rich Felker <dalias@aerifal.cx>
Date: Thu Aug 7 15:35:14 2025 -0400
powerpc[64]: fix missing ctr and xer regs in syscall asm clobberlists
the ctr and xer special registers are call-clobbered and
syscall-clobbered. failure to include them in the... | null | powerpc[64]: fix missing ctr and xer regs in syscall asm clobberlists
the ctr and xer special registers are call-clobbered and
syscall-clobbered. failure to include them in the clobber list may
result in wrong code that attempts to use a value which is no longer
present in the register after the syscall. this has been... | f6944eb3c4ce1c97dc39dc36d32390dc9f70b67b | null | null | null |
git_logdiff | musl | commit 8fd5d031876345e42ae3d11cc07b962f8625bc3b
Author: Rich Felker <dalias@aerifal.cx>
Date: Wed Jul 16 12:04:39 2025 -0400
aarch64: mask off SME and unknown/future hwcap bits
as stated in the comment added, the ABI for SME requires libc to be
aware of and support the extension to the register file... | null | aarch64: mask off SME and unknown/future hwcap bits
as stated in the comment added, the ABI for SME requires libc to be
aware of and support the extension to the register file. this is
necessary to handle lazy saving correctly across setjmp/longjmp, and
on older kernels, in order not to introduce memory corruption bug... | 8fd5d031876345e42ae3d11cc07b962f8625bc3b | null | null | null |
git_logdiff | musl | commit 709fee55fd1f83faef91cf0542766da4421424f3
Author: Rich Felker <dalias@aerifal.cx>
Date: Sat Jul 12 21:56:08 2025 -0400
aarch64: replace asm source file for __set_thread_area with inline asm
this change both aligns with the intended future direction for most
assembly usage, and makes it possibl... | null | aarch64: replace asm source file for __set_thread_area with inline asm
this change both aligns with the intended future direction for most
assembly usage, and makes it possible to add arch-specific setup logic
based on hwcaps like we have for 32-bit arm. | 709fee55fd1f83faef91cf0542766da4421424f3 | null | null | null |
git_logdiff | musl | commit f96e47a26102d537c29435f0abf9ec94676a030e
Author: Rich Felker <dalias@aerifal.cx>
Date: Tue Jul 1 21:30:18 2025 -0400
printf: fix regression in large double formatting on ld128 archs
commit 572a2e2eb91f00f2f25d301cfb50f435e7ae16b3 adjusted the buffer
for decimal conversion to be a VLA that onl... | null | printf: fix regression in large double formatting on ld128 archs
commit 572a2e2eb91f00f2f25d301cfb50f435e7ae16b3 adjusted the buffer
for decimal conversion to be a VLA that only uses the full size needed
for long double when the argument type was long double. however, it
failed to update a later expression for the pos... | f96e47a26102d537c29435f0abf9ec94676a030e | null | null | null |
git_logdiff | musl | commit fcdff46a3203400e08a2264c34b3c7fb62bf6969
Author: J. Neuschäfer <j.neuschaefer@gmx.net>
Date: Thu Oct 24 01:19:30 2024 +0200
statx: add Linux 6.11 fields/constants
As of Linux 6.11, these fields and mask macros have been added to
include/uapi/linux/stat.h.
diff --git a/include/sys/stat.h b/in... | null | statx: add Linux 6.11 fields/constants
As of Linux 6.11, these fields and mask macros have been added to
include/uapi/linux/stat.h. | fcdff46a3203400e08a2264c34b3c7fb62bf6969 | null | null | null |
git_logdiff | musl | commit 86373b4999bfd9a9379bc4a3ca877b1c80a2a340
Author: A. Wilcox <AWilcox@Wilcox-Tech.com>
Date: Fri Jan 3 13:40:44 2025 -0600
powerpc: update HWCAP bits for Power10
Linux kernel commit ee988c11acf6f9464b7b44e9a091bf6afb3b3a49 added two
new HWCAP bits: one for ARCH_3_1, which is the Power10 ISA rev... | null | powerpc: update HWCAP bits for Power10
Linux kernel commit ee988c11acf6f9464b7b44e9a091bf6afb3b3a49 added two
new HWCAP bits: one for ARCH_3_1, which is the Power10 ISA revision, and
one for MMA, which is the optional Matrix Multiply Assist extension. | 86373b4999bfd9a9379bc4a3ca877b1c80a2a340 | null | null | null |
git_logdiff | musl | commit fde29c04adbab9d5b081bf6717b5458188647f1c
Author: Casey Connolly <kcxt@postmarketos.org>
Date: Wed Apr 23 15:06:48 2025 +0200
stdio: skip empty iovec when buffering is disabled
When buffering on a FILE is disabled we still send both iovecs, even
though the first one is always empty. Clean thin... | null | stdio: skip empty iovec when buffering is disabled
When buffering on a FILE is disabled we still send both iovecs, even
though the first one is always empty. Clean things up by skipping the
empty iovec instead. | fde29c04adbab9d5b081bf6717b5458188647f1c | null | null | null |
git_logdiff | musl | commit 23febbd3c5d6b4e367faee4f39b8e8c3b95ab588
Author: Rich Felker <dalias@aerifal.cx>
Date: Mon May 5 09:27:29 2025 -0400
align mbsnrtowcs behavior on partial character with new requirements
POSIX 2024 added a requirement that mbsnrtowcs, like mbrtowc, consume
any final partial character and store... | null | align mbsnrtowcs behavior on partial character with new requirements
POSIX 2024 added a requirement that mbsnrtowcs, like mbrtowc, consume
any final partial character and store it in the mbstate_t object
before returning. this was previously unspecified but documented as a
potential future change.
an internal mbstate... | 23febbd3c5d6b4e367faee4f39b8e8c3b95ab588 | null | null | null |
git_logdiff | musl | commit a34ca6ead1f04283ebd04ffcc42f8dbc6995f2d1
Author: Rich Felker <dalias@aerifal.cx>
Date: Sat Feb 22 11:27:33 2025 -0500
termios: fix input speed handling
traditionally, our cfsetispeed just set the output speed. this was not
conforming or reasonable behavior.
use of the input baud bits... | null | termios: fix input speed handling
traditionally, our cfsetispeed just set the output speed. this was not
conforming or reasonable behavior.
use of the input baud bits in termios c_cflag depends on kernel
support, which was added to linux along with TCSETS2 ioctl and
arbitrary-baud functionality sometime in the 2.6 se... | a34ca6ead1f04283ebd04ffcc42f8dbc6995f2d1 | null | null | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.