From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v1 0/9] board: introduce common infrastructure for Intel SoCs
Date: Thu, 25 Aug 2016 17:04:38 +0300 [thread overview]
Message-ID: <1472133887-34746-1-git-send-email-andriy.shevchenko@linux.intel.com> (raw)
Buildroot often is used for embedded world where Intel, for example, is
presented by a number of boards, such as Intel Galileo, Edison, and Joule.
This series introduces a common infrastructure to build images for such boards.
Besides that it has a brand new set of the ACPI ASL examples to support devices
that can be used with open connected boards.
The series has been tested on Intel Joule, Minnowboard, Minnowboard MAX, and
partially on many other boards and devices.
Andy Shevchenko (3):
package/acpica: Add host configuration to the tool
board/intel/common: Add common files for x86 boards
board/intel/common: Add possibility for adding ACPI tables to the
initrd
Mika Westerberg (6):
board / intel: Add SPI peripherals for Minnowboard MAX
board / intel: Add SPI peripherals for Joule
board / intel: Add Aosong AM2315 sensor for Intel Joule
board / intel: Add GPIO LEDs for Intel Joule
board / intel: Add GPIO LEDs for Intel Minnowboard
board / intel: Add GPIO buttons for Intel Minnowboard
board/intel/common/README.rst | 113 +++++++++++++++++++++
board/intel/common/cmdline | 1 +
board/intel/common/libshell-intel | 26 +++++
board/intel/common/post-build.d/10-install-modules | 23 +++++
board/intel/common/post-build.d/README | 4 +
board/intel/common/post-build.sh | 16 +++
board/intel/common/post-image.d/10-prepare-cmdline | 26 +++++
.../common/post-image.d/30-append-custom-cmdline | 17 ++++
board/intel/common/post-image.d/40-prepare-initrd | 14 +++
board/intel/common/post-image.d/80-acpi-tables | 86 ++++++++++++++++
board/intel/common/post-image.d/README | 4 +
board/intel/common/post-image.sh | 16 +++
board/intel/joule/acpi/am2315.asl | 36 +++++++
board/intel/joule/acpi/at25.asl | 56 ++++++++++
board/intel/joule/acpi/leds.asl | 107 +++++++++++++++++++
board/intel/joule/acpi/spidev.asl | 42 ++++++++
board/intel/minnowboard-max/acpi/at25.asl | 58 +++++++++++
board/intel/minnowboard-max/acpi/m25p80.asl | 52 ++++++++++
board/intel/minnowboard/acpi/buttons.asl | 104 +++++++++++++++++++
board/intel/minnowboard/acpi/leds.asl | 82 +++++++++++++++
configs/intel_defconfig | 30 ++++++
package/Config.in.host | 1 +
package/acpica/Config.in.host | 9 ++
package/acpica/acpica.mk | 15 +++
24 files changed, 938 insertions(+)
create mode 100644 board/intel/common/README.rst
create mode 100644 board/intel/common/cmdline
create mode 100644 board/intel/common/libshell-intel
create mode 100755 board/intel/common/post-build.d/10-install-modules
create mode 100644 board/intel/common/post-build.d/README
create mode 100755 board/intel/common/post-build.sh
create mode 100755 board/intel/common/post-image.d/10-prepare-cmdline
create mode 100755 board/intel/common/post-image.d/30-append-custom-cmdline
create mode 100755 board/intel/common/post-image.d/40-prepare-initrd
create mode 100755 board/intel/common/post-image.d/80-acpi-tables
create mode 100644 board/intel/common/post-image.d/README
create mode 100755 board/intel/common/post-image.sh
create mode 100644 board/intel/joule/acpi/am2315.asl
create mode 100644 board/intel/joule/acpi/at25.asl
create mode 100644 board/intel/joule/acpi/leds.asl
create mode 100644 board/intel/joule/acpi/spidev.asl
create mode 100644 board/intel/minnowboard-max/acpi/at25.asl
create mode 100644 board/intel/minnowboard-max/acpi/m25p80.asl
create mode 100644 board/intel/minnowboard/acpi/buttons.asl
create mode 100644 board/intel/minnowboard/acpi/leds.asl
create mode 100644 configs/intel_defconfig
create mode 100644 package/acpica/Config.in.host
--
2.8.1
next reply other threads:[~2016-08-25 14:04 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-25 14:04 Andy Shevchenko [this message]
2016-08-25 14:04 ` [Buildroot] [PATCH v1 1/9] package/acpica: Add host configuration to the tool Andy Shevchenko
2016-08-25 21:44 ` Thomas Petazzoni
2016-08-26 10:50 ` Erico Nunes
2016-08-25 14:04 ` [Buildroot] [PATCH v1 2/9] board/intel/common: Add common files for x86 boards Andy Shevchenko
2016-08-25 21:37 ` Thomas Petazzoni
2016-08-26 16:42 ` Arnout Vandecappelle
2016-08-25 14:04 ` [Buildroot] [PATCH v1 3/9] board/intel/common: Add possibility for adding ACPI tables to the initrd Andy Shevchenko
2016-08-25 21:43 ` Thomas Petazzoni
2016-08-26 6:13 ` Arnout Vandecappelle
2016-08-26 8:39 ` Thomas Petazzoni
[not found] ` <20160826090454.GK1812@lahna.fi.intel.com>
2016-08-26 9:30 ` Thomas Petazzoni
[not found] ` <20160826093901.GO1812@lahna.fi.intel.com>
2016-08-26 13:28 ` Thomas Petazzoni
2016-08-26 16:30 ` Arnout Vandecappelle
[not found] ` <20160829065522.GV1812@lahna.fi.intel.com>
2016-08-29 7:45 ` Arnout Vandecappelle
[not found] ` <20160829075810.GA1709@lahna.fi.intel.com>
2016-08-29 9:08 ` Arnout Vandecappelle
2016-08-25 14:04 ` [Buildroot] [PATCH v1 4/9] board / intel: Add SPI peripherals for Minnowboard MAX Andy Shevchenko
2016-08-25 21:47 ` Thomas Petazzoni
[not found] ` <20160826090917.GL1812@lahna.fi.intel.com>
2016-08-26 9:26 ` Thomas Petazzoni
2016-08-25 14:04 ` [Buildroot] [PATCH v1 5/9] board / intel: Add SPI peripherals for Joule Andy Shevchenko
2016-08-25 14:04 ` [Buildroot] [PATCH v1 6/9] board / intel: Add Aosong AM2315 sensor for Intel Joule Andy Shevchenko
2016-08-25 14:04 ` [Buildroot] [PATCH v1 7/9] board / intel: Add GPIO LEDs " Andy Shevchenko
2016-08-25 14:04 ` [Buildroot] [PATCH v1 8/9] board / intel: Add GPIO LEDs for Intel Minnowboard Andy Shevchenko
2016-08-25 14:04 ` [Buildroot] [PATCH v1 9/9] board / intel: Add GPIO buttons " Andy Shevchenko
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=1472133887-34746-1-git-send-email-andriy.shevchenko@linux.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=buildroot@busybox.net \
/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