mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* misc patches
@ 2013-09-27  6:47 Sascha Hauer
  2013-09-27  6:47 ` [PATCH 01/11] ARM: pfla02: Fix compiler warning Sascha Hauer
                   ` (10 more replies)
  0 siblings, 11 replies; 14+ messages in thread
From: Sascha Hauer @ 2013-09-27  6:47 UTC (permalink / raw)
  To: barebox

Several cleanups/fixes I stumbled upon while doing other stuff.

Sascha

----------------------------------------------------------------
Sascha Hauer (11):
      ARM: pfla02: Fix compiler warning
      detect command: Add missing help text for -a option
      ata: ide-sff: Add missing wait for ready in write function
      move devinfo command to its own file
      usb: Turn some printf into pr_*
      globalvar: Do not modify already existing variables
      scripts/Makefile: cleanup
      scripts/Makefile: implement targetprogs-y
      scripts: Move omap4_usbboot to its own directory
      bootm needs uImage support. Select it
      defenv-2: Do not overwrite previously existing global variables

 arch/arm/boards/phytec-pfla02/lowlevel.c    |   2 +-
 commands/Makefile                           |   1 +
 commands/detect.c                           |   1 +
 commands/devinfo.c                          | 158 ++++++++++++++++++++++++++++
 common/Kconfig                              |   1 +
 common/globalvar.c                          |   3 +
 defaultenv-2/base/bin/init                  |  19 ++--
 drivers/ata/ide-sff.c                       |   3 +
 drivers/base/driver.c                       | 142 -------------------------
 drivers/usb/core/usb.c                      |   6 +-
 scripts/.gitignore                          |   1 -
 scripts/Makefile                            |  30 +++---
 scripts/omap4_usbboot/.gitignore            |   1 +
 scripts/omap4_usbboot/Makefile              |   5 +
 scripts/{ => omap4_usbboot}/omap4_usbboot.c |   0
 scripts/{ => omap4_usbboot}/usb.h           |   0
 scripts/{ => omap4_usbboot}/usb_linux.c     |   0
 17 files changed, 205 insertions(+), 168 deletions(-)
 create mode 100644 commands/devinfo.c
 create mode 100644 scripts/omap4_usbboot/.gitignore
 create mode 100644 scripts/omap4_usbboot/Makefile
 rename scripts/{ => omap4_usbboot}/omap4_usbboot.c (100%)
 rename scripts/{ => omap4_usbboot}/usb.h (100%)
 rename scripts/{ => omap4_usbboot}/usb_linux.c (100%)

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 14+ messages in thread
* misc patches
@ 2012-04-30 11:32 Sascha Hauer
  0 siblings, 0 replies; 14+ messages in thread
From: Sascha Hauer @ 2012-04-30 11:32 UTC (permalink / raw)
  To: barebox

Some misc patches

Sascha

----------------------------------------------------------------
Sascha Hauer (4):
      edit: Add proper screen size handling
      remove dlmalloc.src
      dhcp: set start time
      tlsf_malloc: return valid pointer for malloc(0)

 commands/edit.c      |   50 +-
 common/dlmalloc.src  | 3265 --------------------------------------------------
 common/tlsf_malloc.c |    7 +
 net/dhcp.c           |    1 +
 4 files changed, 28 insertions(+), 3295 deletions(-)
 delete mode 100644 common/dlmalloc.src

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 14+ messages in thread
* misc patches
@ 2011-12-15 10:49 Sascha Hauer
  0 siblings, 0 replies; 14+ messages in thread
From: Sascha Hauer @ 2011-12-15 10:49 UTC (permalink / raw)
  To: barebox

Some cleanup patches and also one patch which should
really be in the bootm series. The new uimage code uses
lseek. So to make it work on nand devices lseek is implemented
on bb devices. This currently is limited to readonly mode
which is enough for booting images.

Sascha Hauer (7):
      remove unused watchdog header
      remove unused keyboard.h file
      ARM cpuinfo: decode more bits, use ARRAY_SIZE
      ARM: remove unused icache command
      common.h: remove unused function declarations
      cdev: pass flags to open function
      nand-bb: implement lseek in readonly mode

 arch/arm/cpu/cpu.c         |   34 ----------------
 arch/arm/cpu/cpuinfo.c     |    6 +-
 arch/ppc/lib/board.c       |    1 -
 arch/ppc/lib/ppclinux.c    |    1 -
 arch/ppc/lib/ticks.S       |    1 -
 commands/bootm.c           |    1 -
 drivers/mtd/nand/nand-bb.c |   34 ++++++++++++++++-
 drivers/mtd/ubi/cdev.c     |    2 +-
 fs/devfs-core.c            |    2 +-
 fs/devfs.c                 |    2 +-
 include/common.h           |    5 --
 include/driver.h           |    2 +-
 include/keyboard.h         |   22 ----------
 include/watchdog.h         |   92 --------------------------------------------
 lib/readline_simple.c      |    1 -
 net/net.c                  |    1 -
 16 files changed, 40 insertions(+), 167 deletions(-)
 delete mode 100644 include/keyboard.h
 delete mode 100644 include/watchdog.h

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2013-09-27  6:48 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-09-27  6:47 misc patches Sascha Hauer
2013-09-27  6:47 ` [PATCH 01/11] ARM: pfla02: Fix compiler warning Sascha Hauer
2013-09-27  6:47 ` [PATCH 02/11] detect command: Add missing help text for -a option Sascha Hauer
2013-09-27  6:47 ` [PATCH 03/11] ata: ide-sff: Add missing wait for ready in write function Sascha Hauer
2013-09-27  6:47 ` [PATCH 04/11] move devinfo command to its own file Sascha Hauer
2013-09-27  6:47 ` [PATCH 05/11] usb: Turn some printf into pr_* Sascha Hauer
2013-09-27  6:47 ` [PATCH 06/11] globalvar: Do not modify already existing variables Sascha Hauer
2013-09-27  6:47 ` [PATCH 07/11] scripts/Makefile: cleanup Sascha Hauer
2013-09-27  6:47 ` [PATCH 08/11] scripts/Makefile: implement targetprogs-y Sascha Hauer
2013-09-27  6:47 ` [PATCH 09/11] scripts: Move omap4_usbboot to its own directory Sascha Hauer
2013-09-27  6:47 ` [PATCH 10/11] bootm needs uImage support. Select it Sascha Hauer
2013-09-27  6:47 ` [PATCH 11/11] defenv-2: Do not overwrite previously existing global variables Sascha Hauer
  -- strict thread matches above, loose matches on Subject: below --
2012-04-30 11:32 misc patches Sascha Hauer
2011-12-15 10:49 Sascha Hauer

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