mail archive of the barebox mailing list
 help / color / mirror / Atom feed
[PATCH 00/78] ARM aarch64 updates
 2018-03-16 12:53 UTC  (77+ messages)
` [PATCH 01/78] ARM: Use obj-pbl- where appropriate
` [PATCH 02/78] ARM: Add 64bit compilation alternative
` [PATCH 04/78] ARM: mmu: include pgtable header from where it's needed
` [PATCH 05/78] ARM: For relocatable image force TEXT_BASE 0x0
` [PATCH 06/78] ARM: scroll past image end without ld_var
` [PATCH 07/78] ARM: move away from ld_var
` [PATCH 08/78] ARM: remove ld_var support
` [PATCH 09/78] ARM: android image: Fix compiler warning on aarch64
` [PATCH 10/78] ARM: bootm: Fix wrong format specifier
` [PATCH 11/78] ARM: shutdown: Fix compiler warning
` [PATCH 12/78] ARM: aarch64: silence "
` [PATCH 13/78] ARM: aarch64: Add dummy naked attribute
` [PATCH 14/78] ARM: get_runtime_offset() returns unsigned long
` [PATCH 15/78] ARM: aarch64: Add runtime-offset
` [PATCH 16/78] ARM: aarch64: implement get_pc()
` [PATCH 17/78] ARM: Use generic ffz()
` [PATCH 18/78] ARM: bitops: remove unnecessary #ifdef
` [PATCH 19/78] ARM: aarch64: Do not use 32bit optimized fls
` [PATCH 20/78] ARM: Move mmu_disable to mmu.c
` [PATCH 21/78] debug_ll: support 64bit longs
` [PATCH 22/78] ARM: aarch64: fix early cache flushing
` [PATCH 23/78] ARM: aarch64: cache: Add v8_inv_dcache_range
` [PATCH 24/78] ARM: aarch64: cache: no need to ifdef prototypes
` [PATCH 25/78] ARM: Add function to return offset to global variables
` [PATCH 26/78] ARM: remove function prototypes from the past
` [PATCH 27/78] ARM: move linker variable declarations to sections.h
` [PATCH 28/78] ARM: relocate_to_current_adr: Use unsigned long for variables
` [PATCH 29/78] clocksource: Add armv8 generic timer support
` [PATCH 30/78] ARM: aarch64: Add relocation support
` [PATCH 31/78] ARM: aarch64: fix pbl linker script for aarch64
` [PATCH 32/78] ARM: aarch64: mmu: Allocate page tables dynamically
` [PATCH 33/78] ARM: aarch64: mmu: create_sections() takes size in bytes
` [PATCH 34/78] ARM: aarch64: mmu: fix creation of flat mapping
` [PATCH 35/78] ARM: aarch64: mmu: remove unused map_io_sections()
` [PATCH 36/78] ARM: aarch64: mmu: by default map as device memory
` [PATCH 37/78] ARM: aarch64: mmu: Fix mair register setting
` [PATCH 38/78] ARM: aarch64: qemu board: remove unnecessary mapping
` [PATCH 39/78] ARM: aarch64: mmu: enable mmu in generic code
` [PATCH 40/78] ARM: aarch64: mmu: use PTE_* definitions from U-Boot
` [PATCH 41/78] ARM: aarch64: mmu: Fix adding additional page table levels
` [PATCH 42/78] ARM: aarch64: mmu: Fix PTE_TYPE_* flags
` [PATCH 43/78] ARM: aarch64: mmu: Fix TCR setting
` [PATCH 44/78] ARM: aarch64: mmu: No need to disable icache
` [PATCH 45/78] ARM: aarch64: mmu: drop ttb check when disabling the MMU
` [PATCH 46/78] ARM: aarch64: mmu: Fix "
` [PATCH 47/78] ARM: Make some variables 64bit aware
` [PATCH 48/78] dma: Use dma_addr_t as type for DMA addresses
` [PATCH 49/78] dma: Add prototypes for dma mapping functions
` [PATCH 50/78] ARM: implement "
` [PATCH 51/78] ARM: aarch64: implement dma operations
` [PATCH 52/78] ARM: aarch64: compile with strict alignment
` [PATCH 53/78] ARM: aarch64: move aarch64 exception support to separate file
` [PATCH 54/78] ARM: aarch64: fix exception level mixup
` [PATCH 55/78] ARM: aarch64: Setup exception vectors in initcall
` [PATCH 56/78] ARM: aarch64: lowlevel: Use switch_el
` [PATCH 57/78] ARM: aarch64: remove dead code in linker script
` [PATCH 58/78] ARM: aarch64: hide some config options
` [PATCH 59/78] ARM: aarch64: implement show_regs()
` [PATCH 60/78] ARM: aarch64: implement stacktraces
` [PATCH 61/78] ARM: aarch64: mmu: Make zero page faulting
` [PATCH 62/78] ARM: aarch64: Allow to leave exceptions
` [PATCH 63/78] ARM: aarch64: Add esr strings
` [PATCH 64/78] ARM: aarch64: print more information on sync exception
` [PATCH 65/78] ARM: aarch64: implement ignoring data aborts
` [PATCH 67/78] ARM: aarch64: Add barebox head support
` [PATCH 68/78] filetype: Detect ARM aarch64 Linux images
` [PATCH 69/78] common: Add functions to find free RAM
` [PATCH 70/78] bootm: provide handlers the start of the OS image
` [PATCH 71/78] ARM: aarch64: disable 32bit boot commands
` [PATCH 72/78] ARM: aarch64: Add support to start kernel and barebox
` [PATCH 73/78] ARM: cache-armv4: Fix wrong section
` [PATCH 74/78] ARM: build: Remove duplicate file compilation
` [PATCH 75/78] ARM: Create own cache.c file for aarch64
` [PATCH 76/78] ARM: create separate mmu_64.h file
` [PATCH 77/78] ARM: change mmu_early_enable() prototype
` [PATCH 78/78] ARM: aarch64: Make early MMU support work

[PATCH v2 1/6] watchdog: rename dev to hwdev
 2018-03-13  8:33 UTC  (6+ messages)
` [PATCH v2 2/6] watchdog: move max timeout test in to wd_core
` [PATCH v2 3/6] watchdog: register watchdog virtual device with short name wdog
` [PATCH v2 4/6] watchdog: set some reasonable timeout_max value if no other is available
` [PATCH v2 5/6] watchdog: provide timeout_cur value
` [PATCH v2 6/6] watchdog: add watchdog poller

[PATCH v1 1/6] watchdog: rename dev to hwdev
 2018-03-12 10:37 UTC  (11+ messages)
` [PATCH v1 2/6] watchdog: move max timeout test in to wd_core
` [PATCH v1 3/6] watchdog: register watchdog virtual device with short name wdog
` [PATCH v1 4/6] watchdog: set some reasonable timeout_max value if no other is available
` [PATCH v1 5/6] watchdog: provide timeout_cur value
` [PATCH v1 6/6] watchdog: add watchdog poller

[PATCH] video: tc358767: register aux i2c bus after validating link
 2018-03-12 10:29 UTC  (2+ messages)

v2018.03.0
 2018-03-05  7:48 UTC 

[PATCH] watchdog: add periodic watchdog ping
 2018-03-03 23:15 UTC  (2+ messages)

MIPS parallel build breakage
 2018-03-02 14:54 UTC  (6+ messages)

problems with am335x_sdram_size()
 2018-03-02 14:11 UTC  (3+ messages)

freescale-mx28-evk run from ram
 2018-03-02 10:56 UTC  (6+ messages)
  ` 答复: "
      ` 答复: "

my mx283 board sch
 2018-03-02 10:01 UTC 

[PATCH] MIPS: ath79: fix different typos
 2018-03-02  7:38 UTC  (2+ messages)

[PATCH] ARM: dts: remove "delete" entry for deleted clocks
 2018-03-01 18:19 UTC  (3+ messages)

[PATCH] ARM: am335x: beaglebone: Fix DDR register values
 2018-03-01 11:31 UTC 

[PATCH v1 1/2] watchdog: ar9344-wdt: disable watchdog in probe
 2018-03-01  9:04 UTC  (4+ messages)
` [PATCH v1 2/2] MIPS: dts: enable heartbeat led for ar9331-dptechnics-dpt-module

[PATCH] mtd: spi-nor: add support for w25q16dw
 2018-03-01  8:59 UTC  (2+ messages)

[PATCH v3 0/9] ratp: new generic RATP command support
 2018-03-01  8:48 UTC  (11+ messages)
` [PATCH v3 1/9] ratp: implement generic "
` [PATCH v3 2/9] ratp: moved logic to its own subdirectory
` [PATCH v3 3/9] ratp: allow building without full console support
` [PATCH v3 4/9] ratp: implement ping as a standard ratp command
` [PATCH v3 5/9] ratp: implement getenv "
` [PATCH v3 6/9] ratp: use xstrndup() instead of a custom xmemdup_add_zero()
` [PATCH v3 7/9] ratp: new md and mw commands
` [PATCH v3 8/9] ratp: new reset command
` [PATCH v3 9/9] docs: add reference to libratp-barebox in the remote-control docs

[PATCH] ARM: dts: am33xx: do not delete no longer existing clocks
 2018-03-01  8:47 UTC 

[PATCH] boards: samx6: add initial support for kontron samx6i
 2018-02-28 15:58 UTC  (3+ messages)

[PATCH] Pass barebox version to kernel
 2018-02-28  7:34 UTC  (5+ messages)

[PATCH] net: cpsw: fix probe with fixed-link
 2018-02-27  8:41 UTC  (4+ messages)
  ` [PATCH v2] "

[PATCH 1/3] arm: ARM64 doen't provide the armlinux_ functions
 2018-02-26 12:00 UTC  (5+ messages)
` [PATCH 2/3] lib: add weak clz/ctz functions
` [PATCH 3/3] at91sam9263ek: don't build legacy init when OFDEVICE is enabled

[PATCH] ARM/i.MX53: fix compiler warning
 2018-02-26  8:38 UTC 

[PATCH] Use globalvar_add_simple_string for model and hostname
 2018-02-26  7:55 UTC 

autotools for barebox host/target tools?
 2018-02-26  7:40 UTC  (4+ messages)

[PATCH 1/3] commands: ubi: ubiupdatevol: Reduce error code to 0 or 1
 2018-02-23 15:53 UTC  (6+ messages)
` [PATCH 3/3] drivers: mtd: nand: omap: Return stat value

linux.bootargs: export mtdparts from DTS
 2018-02-23  8:10 UTC  (6+ messages)

[PATCH] console: added colored print out of log levels
 2018-02-22 15:16 UTC  (3+ messages)
  ` Antwort: "

[PATCH] ARM/i.MX53: fix SDRAM setup routines
 2018-02-22  8:07 UTC  (2+ messages)

[RFC PATCH v2 0/8] ratp: new generic RATP command support
 2018-02-22  7:59 UTC  (5+ messages)
` [RFC PATCH v2 7/8] ratp: new md and mw commands

[PATCH] efi: add bootsource detection
 2018-02-22  7:21 UTC  (2+ messages)

[PATCH] net: cpsw: remove unnecessary mdiobus_scan()
 2018-02-22  7:17 UTC  (5+ messages)

[PATCH] DHCP: fix option 54 passing
 2018-02-22  7:12 UTC  (2+ messages)

[PATCH 1/2] state: remove unused arguments from state_new_from_node()
 2018-02-20 13:45 UTC  (2+ messages)
` [PATCH 2/2] state: find backend node with its reproducible name

[PATCH] console: move global.allow_color handling to C code
 2018-02-20  7:20 UTC 

[PATCH] Backport "ARM: dts: am335x-bone*: usb0 is hardwired for peripheral" from linux
 2018-02-19  7:07 UTC  (2+ messages)

barebox for a ti am335x based board
 2018-02-19  6:28 UTC  (4+ messages)

re-generate the builtin environment
 2018-02-19  6:27 UTC  (2+ messages)

[PATCH] partitions: Align partition numbering with that of Linux kernel
 2018-02-16 13:50 UTC  (3+ messages)

[PATCH 1/4] 2d-primitives: Introduce gu_draw_text()
 2018-02-16 13:39 UTC  (4+ messages)
` [PATCH 4/4] commands: version: Add framebuffer output support

[RFC] commands: i2c_write: enable raw write to address
 2018-02-16  7:53 UTC  (6+ 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