<feed xmlns='http://www.w3.org/2005/Atom'>
<title>buildroot/board, branch 2016.08</title>
<subtitle>OpenPOWER buildroot sources</subtitle>
<id>https://git.raptorcs.com/git/buildroot/atom?h=2016.08</id>
<link rel='self' href='https://git.raptorcs.com/git/buildroot/atom?h=2016.08'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/'/>
<updated>2016-08-29T21:29:37+00:00</updated>
<entry>
<title>zynq: enable BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG</title>
<updated>2016-08-29T21:29:37+00:00</updated>
<author>
<name>Masahiro Yamada</name>
<email>yamada.masahiro@socionext.com</email>
</author>
<published>2016-07-31T05:43:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=df5793e309e7faf2968cb25604fd6394a2460639'/>
<id>urn:sha1:df5793e309e7faf2968cb25604fd6394a2460639</id>
<content type='text'>
The recent U-Boot adopts Kconfig for its configuration system.

Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Reviewed-by: Matt Weber &lt;matthew.weber@rockwellcollins.com&gt;
Signed-off-by: Peter Korsgaard &lt;peter@korsgaard.com&gt;
</content>
</entry>
<entry>
<title>board/raspberrypi/post-build.sh: only tweak /etc/inittab if available</title>
<updated>2016-08-26T13:37:17+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>peter@korsgaard.com</email>
</author>
<published>2016-08-26T09:52:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=720b9095a6a9fb23c7a2d7d3e4dabbe6b5299b12'/>
<id>urn:sha1:720b9095a6a9fb23c7a2d7d3e4dabbe6b5299b12</id>
<content type='text'>
As pointed out in bug #9161, we don't always have an inittab file (if
systemd or no init is used), so the post build script should only try to
tweak it if present.

Signed-off-by: Peter Korsgaard &lt;peter@korsgaard.com&gt;
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>board/minnowboard/post-build.sh: only tweak /etc/inittab if available</title>
<updated>2016-08-26T13:37:17+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>peter@korsgaard.com</email>
</author>
<published>2016-08-26T09:52:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=707465da72c617982eb5cf2b8c04cbde4bd3768a'/>
<id>urn:sha1:707465da72c617982eb5cf2b8c04cbde4bd3768a</id>
<content type='text'>
As pointed out in bug #9161, we don't always have an inittab file (if
systemd or no init is used), so the post build script should only try to
tweak it if present.

Signed-off-by: Peter Korsgaard &lt;peter@korsgaard.com&gt;
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>m68k: flat one memory region works with small kernel patch</title>
<updated>2016-08-22T22:05:37+00:00</updated>
<author>
<name>Waldemar Brodkorb</name>
<email>wbx@openadk.org</email>
</author>
<published>2016-08-17T06:37:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=f9aee4b5819809b18b51189f3593c074af58fc3b'/>
<id>urn:sha1:f9aee4b5819809b18b51189f3593c074af58fc3b</id>
<content type='text'>
Greg Ungerer fixed recently a bug in the Linux kernel, which
allows to use one memory region again.

Signed-off-by: Waldemar Brodkorb &lt;wbx@openadk.org&gt;
[Thomas: cherry-picked from next to master, in order to be able to use
BR2_BINFMT_FLAT_ONE by default on m68k, since BR2_BINFMT_FLAT_SEP_DATA
causes too much problems.]
Signed-off-by: Peter Korsgaard &lt;peter@korsgaard.com&gt;
</content>
</entry>
<entry>
<title>configs/pc_x86_64_efi_defconfig: enable kernel EFI support</title>
<updated>2016-08-22T21:46:45+00:00</updated>
<author>
<name>Erico Nunes</name>
<email>nunes.erico@gmail.com</email>
</author>
<published>2016-08-22T21:49:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=51e35be7cb99fdc09c47828061b98e72b06869db'/>
<id>urn:sha1:51e35be7cb99fdc09c47828061b98e72b06869db</id>
<content type='text'>
The pc_x86_64_efi reference defconfig is targeted towards an EFI
environment but the kernel which comes with it does not enable EFI
support by default.

Booting this defconfig without kernel EFI support on a qemu virtual
machine with EFI firmware resulted in no output to tty1 or ttyS0.
Enabling EFI support in the kernel fixed this and seems saner for an EFI
reference Buildroot defconfig.

Adding CONFIG_EFI to board/pc/linux-extras.config also affects
pc_x86_64_bios_defconfig which doesn't require it, however it was
observed that the extra overhead is small and so this is preferred
rather than having a separate config file.

This was tested with qemu 2.6.0 running with kvm enabled and firmware
EFI v2.60 by EDK II. Also built and verified bios defconfig on the same
setup but with BIOS firmware instead.

Signed-off-by: Erico Nunes &lt;nunes.erico@gmail.com&gt;
Cc: Gustavo Zacarias &lt;gustavo@zacarias.com.ar&gt;
Acked-by: Gustavo Zacarias &lt;gustavo@zacarias.com.ar&gt;
Signed-off-by: Peter Korsgaard &lt;peter@korsgaard.com&gt;
</content>
</entry>
<entry>
<title>board/beaglebone: add details on how to use the resulting sdcard.img</title>
<updated>2016-08-22T14:47:26+00:00</updated>
<author>
<name>guillaume william brs</name>
<email>guillaume.bressaix@gmail.com</email>
</author>
<published>2016-08-21T15:00:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=1adaf87c1c4e0531694a3a6f690d0644f729bf8d'/>
<id>urn:sha1:1adaf87c1c4e0531694a3a6f690d0644f729bf8d</id>
<content type='text'>
Signed-off-by: Guillaume W. Bres &lt;guillaume.bressaix@gmail.com&gt;
[Thomas: rework commit log.]
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>board/pc/readme.txt: fix output image name</title>
<updated>2016-08-22T14:32:09+00:00</updated>
<author>
<name>Erico Nunes</name>
<email>nunes.erico@gmail.com</email>
</author>
<published>2016-08-22T01:52:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=4249837f422c8d560d38693c132dd7be58cbb900'/>
<id>urn:sha1:4249837f422c8d560d38693c132dd7be58cbb900</id>
<content type='text'>
The instructions listed sdcard.img as output image name but
board/pc/genimage-*.cfg generate it named as disk.img instead.

Signed-off-by: Erico Nunes &lt;nunes.erico@gmail.com&gt;
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>configs/odroidc2: enable console display</title>
<updated>2016-08-07T20:56:00+00:00</updated>
<author>
<name>Dagg Stompler</name>
<email>daggs@gmx.com</email>
</author>
<published>2016-08-07T18:10:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=61b6abb2a2198d0a659d305ac3dd813a1f900aa1'/>
<id>urn:sha1:61b6abb2a2198d0a659d305ac3dd813a1f900aa1</id>
<content type='text'>
Redirect the console output to the screen and not only to the serial
port.

Signed-off-by: Dagg Stompler &lt;daggs@gmx.com&gt;
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>imx6ulpico: linux.fragment: Disable CONFIG_SMP</title>
<updated>2016-08-05T07:15:22+00:00</updated>
<author>
<name>Fabio Estevam</name>
<email>fabio.estevam@nxp.com</email>
</author>
<published>2016-08-05T03:53:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=e0b507d31ab335f115f1eb472c58611fda1f2a67'/>
<id>urn:sha1:e0b507d31ab335f115f1eb472c58611fda1f2a67</id>
<content type='text'>
imx6ul has currently an issue on kernel 4.7 that causes a stall when running
the "reboot" command.

This issue has been reported in the linux-arm-kernel mailing list, but we
don't have a proper fix at the moment.

This problem is not seen when SMP is disabled, so let's disable it for now
until a proper fix becomes available.

Signed-off-by: Fabio Estevam &lt;fabio.estevam@nxp.com&gt;
Signed-off-by: Peter Korsgaard &lt;peter@korsgaard.com&gt;
</content>
</entry>
<entry>
<title>configs: imx6ulpico: Add Wifi support</title>
<updated>2016-08-01T20:11:05+00:00</updated>
<author>
<name>Fabio Estevam</name>
<email>fabio.estevam@nxp.com</email>
</author>
<published>2016-08-01T15:27:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=02bb84cb600fbaa81a1a951206dfb6e167afc6f3'/>
<id>urn:sha1:02bb84cb600fbaa81a1a951206dfb6e167afc6f3</id>
<content type='text'>
imx6ulpico has a BCM4339 Wifi chip. Add Wifi support by default
to allow a better customer experience.

The dts patch has already been sent to the linux-arm-kernel list
and we can remove it once it reaches a mainline kernel (in
version 4.9 probably).

Signed-off-by: Fabio Estevam &lt;fabio.estevam@nxp.com&gt;
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
</feed>
