mail archive of the barebox mailing list
 help / color / mirror / Atom feed
[PATCH 00/44] commands: add bfetch/buds of command redirection
 2025-08-11 12:28 UTC  (39+ messages)
` [PATCH 01/44] driver: move device name definition into device.h
` [PATCH 03/44] lib: param: rename dev_remove_param to param_remove
` [PATCH 04/44] param: implement dev_remove_parameters using param_remove
` [PATCH 05/44] lib: param: add dev_for_each_param helpers
` [PATCH 06/44] driver: initialize device parameters as part of bobject
` [PATCH 07/44] param: operate on bobjects instead of full devices
` [PATCH 08/44] commands: version: print value of CONFIG_NAME
` [PATCH 10/44] test: py: change barebox_config from set to dict
` [PATCH 11/44] test: add heuristic for guessing labgrid environment YAML
` [PATCH 13/44] drivers: use dev_add_param_uint32_fixed for IDs
` [PATCH 14/44] param: make bobject_add_param_fixed variadic
` [PATCH 15/44] param: handle NULL gracefully in bobject_get_param
` [PATCH 16/44] common: introduce structured I/O
` [PATCH 17/44] ARM: cpuinfo: support structio output
` [PATCH 18/44] commands: uptime: enable structured I/O
` [PATCH 19/44] string: implement strv_length helper
` [PATCH 20/44] ARM: psci: client: add PSCI version/method parameters
` [PATCH 21/44] net: move netmask_to_prefix into header
` [PATCH 22/44] stringlist: implement string_list_empty
` [PATCH 23/44] optee: add revision info to tee devinfo output
` [PATCH 24/44] tee: enable structured I/O in devinfo handler
` [PATCH 25/44] mtd: add devices to new mtd class
` [PATCH 26/44] nvmem: add devices to new nvmem class
` [PATCH 27/44] nvmem: export functions to query NVMEM size
` [PATCH 28/44] video: add devices to new fb class
` [PATCH 29/44] security: blobgen: add easy way to check for existent providers
` [PATCH 30/44] pmdomain: add easy way to check for provider support
` [PATCH 31/44] bbu: add easy way to check for existent providers
` [PATCH 32/44] firmware: "
` [PATCH 33/44] rtc: export rtc_class in header
` [PATCH 34/44] driver: featctrl: export of_feature_controllers
` [PATCH 35/44] net: dsa: export dsa_switch_list
` [PATCH 36/44] usb: export usb_host_list
` [PATCH 38/44] pinctrl: export pinctrl_list
` [PATCH 39/44] clk: implement clk_have_nonfixed_providers
` [PATCH 41/44] fimware: arm_scmi: export scmi_list
` [PATCH 42/44] block: define BLK_TYPE_COUNT as last enum blk_type value
` [PATCH 44/44] configs: enable bfetch in some popular defconfigs

[PATCH 0/8] Add Rockchip RK3576 support
 2025-08-11  6:40 UTC  (9+ messages)
` [PATCH 1/8] clk: rockchip: clk-pll.c: Fix macro name confusion
` [PATCH 2/8] clk: rockchip: Introduce rockchip_grf_type enum from kernel driver
` [PATCH 3/8] ARM: Initial support for Rockchip RK3576
` [PATCH 4/8] arm: dts: Add barebox specific RK3576.dtsi
` [PATCH 5/8] aiodev: rockchip_saradc.c: Add support for RK3576
` [PATCH 6/8] gpio: gpio-rockchip.c: Add support for GPIO_TYPE_V2_2
` [PATCH 7/8] arm: dts: rk3576.dtsi: Add gpio aliases
` [PATCH 8/8] phy: phy-rockchip-inno-usb2.c: Fix crash if phyclk isn't found

[PATCH 0/4] net: usb: r8152: disable rx aggregation
 2025-08-08  8:52 UTC  (6+ messages)
` [PATCH 1/4] "
` [PATCH 2/4] net: usb: r8152: print the detected version
` [PATCH 3/4] net: usb: usbnet: calm noisy debug calls
` [PATCH 4/4] net: usb: add debug call in the receive path

[PATCH v2 1/5] security: add new top-level menu
 2025-08-08  5:37 UTC  (6+ messages)
` [PATCH v2 2/5] security: mark weaker passwords hashing algorithms insecure
` [PATCH v2 3/5] commands: introduce new security command group
` [PATCH v2 4/5] security: password: make PBKDF2 the default instead of MD5
` [PATCH v2 5/5] commands: move login/passwd into security section

[PATCH 1/5] security: add new top-level menu
 2025-08-07  8:11 UTC  (8+ messages)
` [PATCH 2/5] security: mark weaker passwords hashing algorithms insecure
` [PATCH 3/5] commands: introduce new security command group
` [PATCH 4/5] security: password: make PBKDF2 the default instead of MD5
` [PATCH 5/5] commands: move login/passwd into security section
` [PATCH] fixup! security: add new top-level menu

[PATCH] commands: iomem: add JSON output
 2025-08-07  7:58 UTC  (2+ messages)

[PATCH 1/3] ppc: implement sync_caches_for_execution
 2025-08-07  7:28 UTC  (4+ messages)
` [PATCH 2/3] MIPS: "
` [PATCH 3/3] openrisc: "

[PATCH RFT v2 1/2] gpio: dw: support numbering via aliases
 2025-08-07  7:26 UTC  (4+ messages)
` [PATCH RFT v2 2/2] gpio: dw: make deep probe compatible

[PATCH 00/22] ARM: mmu: refactor 32-bit and 64-bit code
 2025-08-07  7:24 UTC  (24+ messages)
` [PATCH 01/22] ARM: mmu: introduce new maptype_t type
` [PATCH 02/22] ARM: mmu: compare only lowest 16 bits for map type
` [PATCH 03/22] ARM: mmu: prefix pre-MMU functions with early_
` [PATCH 04/22] ARM: mmu: panic when alloc_pte fails
` [PATCH 05/22] ARM: mmu32: introduce new mmu_addr_t type
` [PATCH 06/22] ARM: mmu: provide zero page control in PBL
` [PATCH 07/22] ARM: mmu: print map type as string
` [PATCH 08/22] ARM: mmu64: rename create_sections to __arch_remap_range
` [PATCH 09/22] ARM: mmu: move get_pte_attrs call into __arch_remap_range
` [PATCH 10/22] ARM: mmu64: print debug message in __arch_remap_range
` [PATCH 11/22] ARM: mmu: make force_pages a maptype_t flag
` [PATCH 12/22] ARM: mmu64: move granule_size to the top of the file
` [PATCH 13/22] ARM: mmu64: fix benign off-by-one in flush_cacheable_pages
` [PATCH 14/22] ARM: mmu64: make flush_cacheable_pages less 64-bit dependent
` [PATCH 15/22] ARM: mmu64: allow asserting last level page in __find_pte
` [PATCH 16/22] ARM: mmu64: rename __find_pte to find_pte
` [PATCH 17/22] ARM: mmu32: rework find_pte to have ARM64 find_pte semantics
` [PATCH 18/22] ARM: mmu64: factor out flush_cacheable_pages for reusability
` [PATCH 19/22] ARM: mmu32: flush only cacheable pages on remap
` [PATCH 20/22] ARM: mmu32: factor out set_pte_range helper
` [PATCH 21/22] ARM: mmu64: "
` [PATCH 22/22] ARM: mmu: define dma_alloc_writecombine in common code

[PATCH] fixup! net: add support for Designware XGMAC (10gb) ethernet
 2025-08-07  6:15 UTC  (2+ messages)

[PATCH 1/2] tee: optee: merge tee/optee.h and ARM asm/optee.h
 2025-08-07  6:11 UTC  (3+ messages)
` [PATCH 2/2] tee: optee: skip optee node fixup if method is NULL

[PATCH 1/2] common: prefix panic with PANIC:
 2025-08-07  6:06 UTC  (3+ messages)
` [PATCH 2/2] ARM: interrupts: unify panic output on unhandled exception

[PATCH] ci: pytest: print labgrid console output inline
 2025-08-07  6:02 UTC  (2+ messages)

[PATCH 0/4] test: add/document pytest --graphic, --env, --fs
 2025-08-07  6:02 UTC  (7+ messages)
` [PATCH 4/4] test: add support for pytest --graphic
  ` [PATCH] fixup! "

[PATCH master] bootm: ignore global.bootm.initrd if unavailable
 2025-08-07  5:14 UTC  (2+ messages)

[PATCH] test: add --bootarg option when running under QEMU
 2025-08-07  5:13 UTC  (2+ messages)

[PATCH] fixup! test: add support for pytest --graphic
 2025-08-07  5:12 UTC  (2+ messages)

[PATCH] fixup! test: add --bootarg option when running under QEMU
 2025-08-06 16:32 UTC  (2+ messages)

[PATCH] hush: implement PROMPT_COMMAND
 2025-08-06 13:16 UTC 

[PATCH RFT] gpio: dw: make deep probe compatible
 2025-08-06 10:15 UTC 

[PATCH v2 1/2] keytoc: make keyspec a const char pointer
 2025-08-06  7:54 UTC  (6+ messages)
` [PATCH v2 2/2] keytoc: fix env provided keyspec handling

[PATCH v3 00/10] Add FIT image overlay support
 2025-08-06  7:41 UTC  (8+ messages)
` [PATCH v3 06/10] of: overlay: add FIT "

[PATCH] usb: dwc3: remove CONFIG_USB_ROLE_SWITCH in condition
 2025-08-06  7:17 UTC  (4+ messages)

[PATCH master] tlv: drop assigned MAC addresses from fixup
 2025-08-06  6:32 UTC  (2+ messages)

[PATCH master 0/8] ARM: mmu: fix hang reserving memory after text area
 2025-08-06  6:31 UTC  (10+ messages)
` [PATCH master 1/8] partition: rename region_overlap_end to region_overlap_end_inclusive
` [PATCH master 2/8] partition: define new region_overlap_end_exclusive helper
` [PATCH master 3/8] ARM: mmu: skip TLB invalidation if remapping zero bytes
` [PATCH master 4/8] ARM64: mmu: pass map type not PTE flags to early_remap_range
` [PATCH master 5/8] ARM: mmu: provide setup_trap_pages for both 32- and 64-bit
` [PATCH master 6/8] ARM: mmu: setup trap pages before remapping R/O
` [PATCH master 7/8] ARM: mmu: share common memory bank remapping code
` [PATCH master 8/8] ARM: mmu: fix hang reserving memory after text area

[PATCH] cdev: fix mtd partition handling
 2025-08-06  4:56 UTC  (3+ messages)

[PATCH] mtd: nand: add manufacturer ISSI
 2025-08-06  4:54 UTC  (2+ messages)

[PATCH v4 00/11] Add FIT image overlay support
 2025-08-05 20:14 UTC  (4+ messages)
` [PATCH v4 07/11] of: overlay: add "

[PATCH 00/15] NVMEM: Add support for layout drivers
 2025-08-05 10:44 UTC  (2+ messages)

[PATCH v4 00/13] ARM: Map sections RO/XN
 2025-08-05 10:18 UTC  (2+ messages)

[PATCH 00/10] ARM: SoCFPGA: Add initial support for Agilex5
 2025-08-05 10:11 UTC  (2+ messages)

[PATCH v2 00/10] ARM: SoCFPGA: Add initial support for Agilex5
 2025-08-05 10:11 UTC  (2+ messages)

[PATCH v3 00/10] ARM: SoCFPGA: Add initial support for Agilex5
 2025-08-05 10:11 UTC  (2+ messages)

[PATCH v4 00/10] ARM: SoCFPGA: Add initial support for Agilex5
 2025-08-05 10:11 UTC  (2+ messages)

[PATCH 1/3] arch/arm/boards/avnet-zedboard/zedboard.zynqcfg: removed everything but stop instruction to fix barebox boot
 2025-08-05  9:35 UTC  (4+ messages)
` [PATCH 2/3] arch/arm/boards/avnet-zedboard/lowlevel.c: added SDIO clk frequency configuration
` (subset) [PATCH 1/3] arch/arm/boards/avnet-zedboard/zedboard.zynqcfg: removed everything but stop instruction to fix barebox boot

[PATCH 0/4] mci: clean up MCI idle delay handling a bit
 2025-08-05  9:29 UTC  (2+ messages)

[PATCH] hab: writing the same srk hash is not an error
 2025-08-05  9:23 UTC  (2+ messages)

[PATCH] ARM: i.MX: ele: make ele_life_cycle public
 2025-08-05  9:22 UTC  (2+ messages)

[PATCH] ARM: riotboard: add habv4-imx6-gencsf.h to flash header
 2025-08-05  9:22 UTC  (2+ messages)

[PATCH 1/2] hardening: make stack guard page the default
 2025-08-05  9:21 UTC  (2+ messages)

[PATCH] fixup! ARM: add exception handling support for PBL
 2025-08-05  9:20 UTC  (2+ messages)

[PATCH 1/3] driver: clean up comment formatting and spacing
 2025-08-05  9:18 UTC  (2+ messages)

[PATCH] driver: convert struct device comments to kernel-doc style
 2025-08-05  9:18 UTC  (2+ messages)

[PATCH] ddr: imx9: fix DRAM PLL bypass
 2025-08-05  9:14 UTC  (2+ messages)

[PATCH] partition: fix kernel doc for region_identical
 2025-08-05  9:12 UTC  (2+ messages)

[PATCH v2 0/4] Documentation: devel: add new troubleshooting
 2025-08-05  9:11 UTC  (2+ messages)

[PATCH] ARM: i.MX: Kconfig: fix typos
 2025-08-05  9:10 UTC  (2+ messages)

[PATCH] kbuild: drop ineffectual variable assignments in Makefile.dtbs
 2025-08-05  9:09 UTC  (2+ messages)

[PATCH 1/2] serial: cadence: support console= and earlycon= fixups
 2025-08-05  9:09 UTC  (2+ messages)

[PATCH] Documentation: gen_commands.py: fix Option list warning
 2025-08-05  9:07 UTC  (2+ messages)

[PATCH 0/4] drop unused declarations
 2025-08-05  9:06 UTC  (2+ messages)

[PATCH v2 0/5] scripts: rockchip: fix and cleanup rkimage
 2025-08-05  9:05 UTC  (4+ messages)
` [PATCH v2 2/5] scripts: rockchip: rename hashtype to flags
` [PATCH v2 3/5] scripts: rockchip: add helper for updating hash

[PATCH 0/3] Documentation: devel: add new troubleshooting
 2025-08-05  9:03 UTC  (2+ messages)

[PATCH] Documentation: devel: fuzzing: fix wrong ReST syntax
 2025-08-05  8:37 UTC  (2+ messages)

[PATCH master] Documentation: migration-2025.07.0: fix formatting
 2025-08-05  8:37 UTC  (2+ messages)

[PATCH] Documentation: boards: k3: fix typo in build instructions
 2025-08-05  8:36 UTC  (2+ messages)

[PATCH] Added documentation for the Zynq 7000
 2025-08-05  8:35 UTC  (2+ messages)

[PATCH] ppc: fix missing cache maintenance before mapping uncached
 2025-08-05  8:35 UTC  (2+ messages)

[PATCH] clk: clk-gpio: Use clk_register instead of bclk_register
 2025-08-05  8:33 UTC  (2+ messages)

[PATCH] of: platform: rename parameter 'bus' to 'node' in of_platform_bus_create()
 2025-08-05  8:26 UTC  (2+ messages)

[PATCH master] drivers: fix buggy comparisons of casted device_get_match_data to zero
 2025-08-05  8:19 UTC  (2+ messages)

[PATCH] block: fix block device detection
 2025-08-05  7:56 UTC  (2+ messages)

[PATCH] block: follow links before check if cdev_is_block_partition
 2025-08-05  7:50 UTC  (2+ messages)

[PATCH master] fastboot: populate is-logical:$partition variable
 2025-08-05  7:45 UTC  (2+ messages)

[PATCH] pinctrl: tegra30: fix typo with variables to control the drive state on nvidia pins
 2025-08-05  7:43 UTC  (2+ messages)

[PATCH] clk: clkdev: fix format security
 2025-08-05  7:42 UTC  (2+ messages)

[PATCH] commands: mmc_extcsd: fix calculation of RPMB size
 2025-08-05  7:41 UTC  (2+ messages)

[PATCH v1 0/4] ARM: boards: add support for Samsung Galaxy S8 and S20 5G
 2025-08-05  7:40 UTC  (3+ messages)
` [PATCH v1 2/4] clocksource: arm_architected_timer: support clock-frequency
  ` (subset) "

page:  |  | latest

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