mail archive of the barebox mailing list
 help / color / mirror / Atom feed
[PATCH v2 0/8] video: ssd1307fb: Add SPI support
 2022-01-03  8:06 UTC  (10+ messages)
` [PATCH v2 1/8] spi: stub device_spi_driver if SPI is disabled
` [PATCH v2 2/8] spi: add to_spi_device helper
` [PATCH v2 3/8] i2c: stub device_i2c_driver if I2C is disabled
` [PATCH v2 4/8] video: ssd1307fb: pass par instead of i2c client to write
` [PATCH v2 5/8] video: ssd1307fb: don't use i2c client for logging
` [PATCH v2 6/8] video: ssd1307fb: move i2c setup to single place
` [PATCH v2 7/8] video: ssd1307fb: use function pointer for write
` [PATCH v2 8/8] video: ssd1307fb: add spi support

[PATCH] arm: mvebu: Replace license and copyright boilerplate by SPDX identifiers
 2021-12-30 14:31 UTC 

[PATCH] rtc: import pcf85363 support from linux-5.12
 2021-12-26 16:37 UTC 

Howto implement bootchooser <-> rauc interaction
 2021-12-22 14:05 UTC  (18+ messages)
        ` Fwd: "

[PATCH 00/25] EFI improvements
 2021-12-18 13:55 UTC  (35+ messages)
` [PATCH 01/25] efi-devicepath: Make efi_device_path argument const
` [PATCH 02/25] efi: move device-path defines and types to header file
` [PATCH 03/25] efi: Implement device_path_to_subtype()
` [PATCH 04/25] efi: Do not register IPv[46] devices
` [PATCH 05/25] console: Fix message colours
` [PATCH 06/25] efi-stdio: remove unnecessary check
` [PATCH 07/25] efi-stdio: rename to efi_process_escape
` [PATCH 08/25] efi-stdio: return bytes actually consumed
` [PATCH 09/25] efi-stdio: fix escape sequence end detection
` [PATCH 10/25] efi-stdio: improve escape sequence parsing
` [PATCH 11/25] efi-stdio: Fix out of bounds error in puts
` [PATCH 12/25] efi-stdio: Fix tab printing
` [PATCH 13/25] efi-stdio: Implement efi_console_putc() using efi_console_puts()
` [PATCH 14/25] efi-stdio: Fix '\b' handling
` [PATCH 15/25] efi-stdio: implement input buffering with a kfifo
` [PATCH 16/25] efi-stdio: limit set_cursor to screen size boundaries
` [PATCH 17/25] efi-stdio: implement getting the cursor position
` [PATCH 18/25] efi-stdio: Implement setting cursor visibility
` [PATCH 19/25] efi-stdio: Support different text modes
` [PATCH 20/25] edit: improve screen size detection
` [PATCH 21/25] edit: Improve behaviour on efi-stdio console
` [PATCH 22/25] edit: send escape sequence only for smartscroll
` [PATCH 23/25] net: efi-snp: Check for carrier before sending
` [PATCH 24/25] efi: add efi_device hook to be called before an image is started
` [PATCH 25/25] net: efi-snp: Open protocol exclusively

[PATCH 0/5] video: ssd1307fb: Add SPI support
 2021-12-18  6:20 UTC  (9+ messages)
` [PATCH 1/5] video: ssd1307fb: pass par instead of i2c client to write
` [PATCH 2/5] video: ssd1307fb: don't use i2c client for logging
` [PATCH 3/5] video: ssd1307fb: move i2c setup to single place
` [PATCH 4/5] video: ssd1307fb: use function pointer for write
` [PATCH 5/5] video: ssd1307fb: add spi support

[PATCH] watchdog: imxwd: suspend watchdog timer in low power mode
 2021-12-16 12:26 UTC 

[PATCH 1/3] vsprintf: add support for printing raw buffers as hex (%*ph)
 2021-12-15 20:16 UTC  (7+ messages)
` [PATCH 2/3] common: add new PRINTF_FULL option
` [PATCH 3/3] of: implement new of_property_sprintf
  ` [PATCH] fixup! "

[PATCH v2] fs: jffs2: fix error when reading blocks with offset
 2021-12-15  9:55 UTC  (2+ messages)

v2021.12.0
 2021-12-15  8:46 UTC 

[PATCH] misc: sram: remove duplicated resource handling code
 2021-12-13 22:23 UTC  (2+ messages)

[PATCH master] include: linux/printk.h: include <stdarg.h> to make header self-contained
 2021-12-13 22:20 UTC  (2+ messages)

[PATCH] fixup! vsprintf: add optional support for %ls format modifier
 2021-12-13 22:19 UTC  (2+ messages)

[PATCH] crypto: crc32: add big endian CRC implementation
 2021-12-13 22:17 UTC  (2+ messages)

[PATCH] include: <linux/build_bug.h>: define static_assert
 2021-12-13 22:17 UTC  (2+ messages)

[PATCH] commands: of_diff: don't mix tabs and spaces for indentation
 2021-12-13 22:16 UTC  (2+ messages)

[PATCH] of: make of_dump abortable by ctrlc()
 2021-12-13 22:16 UTC  (2+ messages)

[PATCH] clk: bulk: improve error message on failure to get
 2021-12-13 22:14 UTC  (2+ messages)

[PATCH master] RISC-V: interrupts: fix Zifencei emulation on rv64
 2021-12-13 22:13 UTC  (2+ messages)

phy driver
 2021-12-08  9:30 UTC  (2+ messages)

[PATCH 0/7] ARM/RISC-V: qemu-virt: share common cleaned up state/env support
 2021-12-07 14:04 UTC  (11+ messages)
` [PATCH 1/7] state: mark state init errors specially
` [PATCH 2/7] state: make first boot less verbose
` [PATCH 3/7] of: overlay: rescan aliases calling of_overlay_apply_tree on live tree
` [PATCH 4/7] ARM: qemu: enable deep probe support
` [PATCH 5/7] ARM: qemu: move board code to central location
` [PATCH 6/7] common: boards: qemu-virt: genericize to support non-ARM architectures
` [PATCH 7/7] RISC-V: qemu-virt: add overlay for environment and state

[PATCH 1/3] ARM: implement ENTRY_FUNCTION_WITHSTACK
 2021-12-07  9:26 UTC  (6+ messages)
` [PATCH 2/3] ARM: turn arm_mem_stack_top into a macro
` [PATCH 3/3] ARM: rpi: use ENTRY_FUNCTION_WITHSTACK to prepare for ARM64 support
` [PATCH] fixup! ARM: implement ENTRY_FUNCTION_WITHSTACK

[PATCH master] fs: /dev/mem: handle copy at offset 0 correctly
 2021-12-07  9:13 UTC  (2+ messages)

[PATCH] RISC-V: virt: add DEBUG_LL support
 2021-12-07  9:11 UTC  (2+ messages)

[PATCH] phy: rockchip-inno-usb2: add support for older rockchip SoC bindings
 2021-12-07  9:10 UTC  (2+ messages)

[PATCH] ARM: Rockchip rk3568 EVB: git ignore sdram-init.bin
 2021-12-07  9:09 UTC  (2+ messages)

[PATCH] mci: bcm2835: Don't send MMC_CMD_GO_IDLE_STATE at the end of .init()
 2021-12-07  9:08 UTC  (2+ messages)

[PATCH] scripts/kwboot: Fix normalizing timeval
 2021-12-07  9:07 UTC  (2+ messages)

[PATCH master] RISC-V: cpu: fix build with CONFIG_RISCV_EXCEPTIONS=n
 2021-12-07  9:06 UTC  (2+ messages)

[PATCH master] net: cpsw: add support for new binding in Linux v5.15-rc1 DTs
 2021-12-07  9:05 UTC  (2+ messages)

[PATCH master] Revert "ARM: beaglebone: init MPU speed to 800Mhz"
 2021-12-07  8:18 UTC  (3+ messages)

[PATCH] fs: jffs2: fix error when reading blocks with offset
 2021-12-07  8:13 UTC  (3+ messages)

[PATCH] rpi wip
 2021-11-30 20:29 UTC  (2+ messages)

[PATCH v2 0/2] fs: jffs2: remove slab cache substitute with malloc
 2021-11-30 10:41 UTC  (6+ messages)
` [PATCH v2 1/2] fs: jffs2: introduce reference counting at probe
` [PATCH v2 2/2] fs: jffs2: remove unnecessary slab cache structure

[PATCH] state: make first boot with uninitialized legacy state less verbose
 2021-11-30 10:39 UTC  (3+ messages)

[PATCH 1/2] of: skip machine device creation on subsequent of_probe
 2021-11-30 10:36 UTC  (3+ messages)
` [PATCH 2/2] of: base: improve documentation of global exports

[PATCH] test: emulate.pl: fix typo in help text
 2021-11-30 10:28 UTC  (2+ messages)

[PATCH master] RISC-V: nmon: fix SiFive DEBUG_LL build
 2021-11-30 10:27 UTC  (2+ messages)

[PATCH] envfs-core: write to log where appropriate
 2021-11-30 10:24 UTC  (2+ messages)

[PATCH] commands: devinfo: Omit parent if direct descendent of bus
 2021-11-30 10:19 UTC  (2+ messages)

[PATCH v1] nvmem: bsec.c: add optional permanent write support
 2021-11-30 10:16 UTC  (4+ messages)
` [PATCH] fixup! "

[PATCH v1] nvmem: bsec.c: Use SMC_READ_OTP in stm32_bsec_read_mac()
 2021-11-30 10:08 UTC  (3+ messages)

[PATCH] devinfo: Omit parent if direct descendent of bus
 2021-11-29  8:07 UTC  (2+ messages)

[PATCH] driver: implement dev_err_probe()
 2021-11-25  7:50 UTC  (2+ messages)

[PATCH] RISC-V: LiteX: fix comment about running from ROM
 2021-11-25  7:48 UTC  (2+ messages)

[PATCH v2 1/2] RISC-V: enable HW_HAS_PCI
 2021-11-25  7:48 UTC  (3+ messages)
` [PATCH v2 2/2] RISC-V: configs: virt: enable networking and PCI

[PATCH] RISC-V: configs: virt: enable networking and PCI
 2021-11-25  7:46 UTC  (2+ messages)

[PATCH] usb: dwc2: host: Do not map buffer on zero len packet
 2021-11-25  7:45 UTC  (2+ messages)

[PATCH 00/30] efi: refactor for upcoming loader support
 2021-11-25  7:44 UTC  (8+ messages)
` [PATCH 08/30] common: move EFI code into new efi/ top level directory
` [PATCH 10/30] efi: use SPDX-License-Identifier where appropriate
` [PATCH 18/30] lib: implement wcsnlen
` [PATCH 23/30] efi: define and use new EFI_ERROR_MASK macro

[PATCH v2 0/6] PHYTEC patches to be mainlined
 2021-11-25  7:30 UTC  (2+ messages)

[PATCH] fs: jffs2: remove slab cache substitute with malloc
 2021-11-22  9:26 UTC  (3+ messages)

[PATCH] ARM: socfpga: Set reset-names property for &mmc
 2021-11-22  9:11 UTC  (3+ messages)
` [PATCH v2] "

[PATCH] debug_ll: ns16550: Fix interrupt disable on init
 2021-11-22  9:10 UTC  (4+ messages)

[PATCH] of: address: mark 64-bit PCI resources explicitly as such
 2021-11-22  9:08 UTC  (2+ messages)

[PATCH v2 1/2] arm: boards: Add support for PRTT1x STM32MP151 based boards
 2021-11-22  9:07 UTC  (2+ messages)

[PATCH 1/2] ARM64: qemu-virt: enable PCI support
 2021-11-22  8:54 UTC  (2+ messages)

[PATCH 1/3] drivers: mci-bcm2835: remove useless comment
 2021-11-22  8:53 UTC  (2+ messages)

page:  |  | latest

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox