mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: barebox@lists.infradead.org
Subject: [PATCH 0/9] versatilepb, console, graphichs serie
Date: Tue, 23 Dec 2014 18:07:09 +0100	[thread overview]
Message-ID: <20141223170709.GA15818@ns203013.ovh.net> (raw)

Hi,

	here is a patch series of different stuff

	To prepare the adding of the USB Keyboard and other GUI related
	patches

	Versatilepb:
	 - move to defaultenv-2

	Graphics:
	 - fix
	  - defaultenv-2


The following changes since commit 631be8e6cbe003f469a7e6b54046a743b710d989:

  blspec: print error when devicetree not found (2014-12-16 14:29:23 +0100)

are available in the git repository at:

  git://git.jcrosoft.org/barebox.git delivery/for-next

for you to fetch changes up to 3457c1de8201cbe6ca24ddba75df789fad8b6095:

  defaultenv-2: create a specific defaultenv for splash (2014-12-23 05:51:11 +0800)

----------------------------------------------------------------
Jean-Christophe PLAGNIOL-VILLARD (9):
      kfifo: allow to pass a null point on kfifo_free
      efika-mx-smartbook: enable led hearbeat on mail
      grapric_utils: set_pixel only write 16bit in 16bit mode
      versatilepb: move barebox to 32 MiB and use zImage
      versatilepb: switch to defaultenv-2
      console: factorize kfifo input support
      poller: allow to restrict the poller frequency
      console: allow to specify the device id
      defaultenv-2: create a specific defaultenv for splash

 arch/arm/boards/efika-mx-smartbook/board.c           |  2 ++
 arch/arm/boards/versatile/env/boot.d/001-nor         |  1 +
 arch/arm/boards/versatile/env/boot.d/101-nor-update  |  1 +
 arch/arm/boards/versatile/env/boot/nor               | 15 +++++++++++++++
 arch/arm/boards/versatile/env/boot/nor-update        | 14 ++++++++++++++
 arch/arm/boards/versatile/env/config                 | 38 --------------------------------------
 arch/arm/boards/versatile/env/init/automount         | 11 +++++++++++
 arch/arm/boards/versatile/env/init/mtdparts-nor      | 11 +++++++++++
 arch/arm/boards/versatile/env/init/ps1               |  7 +++++++
 arch/arm/boards/versatile/env/nv/boot.default        |  1 +
 arch/arm/boards/versatile/env/nv/hostname            |  1 +
 arch/arm/boards/versatile/env/nv/linux.bootargs.base |  1 +
 arch/arm/boards/versatile/versatilepb.c              |  4 ++--
 arch/arm/configs/versatilepb_defconfig               | 31 ++++++++++++++++++++++++++++---
 arch/arm/mach-versatile/Kconfig                      |  4 ++++
 common/Kconfig                                       |  8 ++++++++
 common/console.c                                     | 10 +++++++++-
 common/console_common.c                              | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 common/console_simple.c                              |  4 ++++
 common/poller.c                                      | 11 ++++++++++-
 defaultenv/Makefile                                  |  1 +
 defaultenv/defaultenv-2-splash/bin/splash            | 15 +++++++++++++++
 defaultenv/defaultenv-2-splash/init/splash           |  3 +++
 defaultenv/defaultenv.c                              |  2 ++
 drivers/input/Kconfig                                |  4 ++++
 drivers/input/gpio_keys.c                            | 43 ++++++-------------------------------------
 drivers/input/imx_keypad.c                           | 29 ++---------------------------
 drivers/input/qt1070.c                               | 28 ++--------------------------
 drivers/input/twl6030_pwrbtn.c                       | 32 ++------------------------------
 drivers/usb/gadget/u_serial.c                        |  1 +
 include/console.h                                    | 23 +++++++++++++++++++++++
 include/gpio_keys.h                                  |  1 -
 include/poller.h                                     |  3 +++
 lib/gui/graphic_utils.c                              |  2 +-
 lib/kfifo.c                                          |  2 ++
 35 files changed, 268 insertions(+), 167 deletions(-)
 create mode 120000 arch/arm/boards/versatile/env/boot.d/001-nor
 create mode 120000 arch/arm/boards/versatile/env/boot.d/101-nor-update
 create mode 100644 arch/arm/boards/versatile/env/boot/nor
 create mode 100644 arch/arm/boards/versatile/env/boot/nor-update
 delete mode 100644 arch/arm/boards/versatile/env/config
 create mode 100644 arch/arm/boards/versatile/env/init/automount
 create mode 100644 arch/arm/boards/versatile/env/init/mtdparts-nor
 create mode 100644 arch/arm/boards/versatile/env/init/ps1
 create mode 100644 arch/arm/boards/versatile/env/nv/boot.default
 create mode 100644 arch/arm/boards/versatile/env/nv/hostname
 create mode 100644 arch/arm/boards/versatile/env/nv/linux.bootargs.base
 create mode 100644 defaultenv/defaultenv-2-splash/bin/splash
 create mode 100644 defaultenv/defaultenv-2-splash/init/splash

Best Regards,
J.

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

             reply	other threads:[~2014-12-23 17:17 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-23 17:07 Jean-Christophe PLAGNIOL-VILLARD [this message]
2014-12-23 18:21 ` [PATCH 1/9] kfifo: allow to pass a null point on kfifo_free Jean-Christophe PLAGNIOL-VILLARD
2014-12-23 18:21   ` [PATCH 2/9] efika-mx-smartbook: enable led hearbeat on mail Jean-Christophe PLAGNIOL-VILLARD
2015-01-05 10:36     ` Sascha Hauer
2014-12-23 18:21   ` [PATCH 3/9] grapric_utils: set_pixel only write 16bit in 16bit mode Jean-Christophe PLAGNIOL-VILLARD
2015-01-05 10:37     ` Sascha Hauer
2014-12-23 18:21   ` [PATCH 4/9] versatilepb: move barebox to 32 MiB and use zImage Jean-Christophe PLAGNIOL-VILLARD
2015-01-05 10:38     ` Sascha Hauer
2014-12-23 18:21   ` [PATCH 5/9] versatilepb: switch to defaultenv-2 Jean-Christophe PLAGNIOL-VILLARD
2015-01-05 10:38     ` Sascha Hauer
2014-12-23 18:21   ` [PATCH 6/9] console: factorize kfifo input support Jean-Christophe PLAGNIOL-VILLARD
2015-01-05 11:18     ` Sascha Hauer
2014-12-23 18:21   ` [PATCH 7/9] poller: allow to restrict the poller frequency Jean-Christophe PLAGNIOL-VILLARD
2015-01-05 10:42     ` Sascha Hauer
2015-01-06  0:46       ` Jean-Christophe PLAGNIOL-VILLARD
2014-12-23 18:21   ` [PATCH 8/9] console: allow to specify the device id Jean-Christophe PLAGNIOL-VILLARD
2015-01-05 10:46     ` Sascha Hauer
2014-12-23 18:21   ` [PATCH 9/9] defaultenv-2: create a specific defaultenv for splash Jean-Christophe PLAGNIOL-VILLARD
2015-01-05 10:50     ` Sascha Hauer
2015-01-06  0:43       ` Jean-Christophe PLAGNIOL-VILLARD
2015-01-06 12:57         ` Sascha Hauer
2015-01-07  5:49           ` Jean-Christophe PLAGNIOL-VILLARD

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20141223170709.GA15818@ns203013.ovh.net \
    --to=plagnioj@jcrosoft.com \
    --cc=barebox@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox