* [Buildroot] [PATCH 0/5] rpi: global update
@ 2015-08-13 16:22 Benoît Thébaudeau
2015-08-13 16:22 ` [Buildroot] [PATCH 1/5] package/rpi-firmware: bump marking script version Benoît Thébaudeau
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Benoît Thébaudeau @ 2015-08-13 16:22 UTC (permalink / raw)
To: buildroot
Hi all,
This series is a global update of the RPi stuff. It depends on the following
series:
http://patchwork.ozlabs.org/patch/507028/
http://patchwork.ozlabs.org/patch/507027/
This is based on next.
Best regards,
Beno?t
Beno?t Th?baudeau (5):
package/rpi-firmware: bump marking script version
package/rpi-firmware: bump version
configs/raspberrypi: bump kernel version to 4.1.5
configs/raspberrypi2: bump kernel version to 4.1.5
package/rpi-userland: bump version
configs/raspberrypi2_defconfig | 10 +-
configs/raspberrypi_defconfig | 11 +-
package/rpi-firmware/mkknlimg | 246 ++++++++++++++++++++++-------------
package/rpi-firmware/rpi-firmware.mk | 2 +-
package/rpi-userland/rpi-userland.mk | 2 +-
5 files changed, 171 insertions(+), 100 deletions(-)
mode change 100755 => 100644 package/rpi-firmware/mkknlimg
--
2.1.4
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 1/5] package/rpi-firmware: bump marking script version
2015-08-13 16:22 [Buildroot] [PATCH 0/5] rpi: global update Benoît Thébaudeau
@ 2015-08-13 16:22 ` Benoît Thébaudeau
2015-08-13 16:22 ` [Buildroot] [PATCH 2/5] package/rpi-firmware: bump version Benoît Thébaudeau
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Benoît Thébaudeau @ 2015-08-13 16:22 UTC (permalink / raw)
To: buildroot
Changes since last version:
- add support for lz4-compressed kernels,
- add copyright and license banners,
- enable warnings and fix a few uses of undefined variables,
- update from the rpi-4.0.y kernel.
Signed-off-by: Beno?t Th?baudeau <benoit@wsystem.com>
---
package/rpi-firmware/mkknlimg | 246 +++++++++++++++++++++++++++---------------
1 file changed, 159 insertions(+), 87 deletions(-)
mode change 100755 => 100644 package/rpi-firmware/mkknlimg
diff --git a/package/rpi-firmware/mkknlimg b/package/rpi-firmware/mkknlimg
old mode 100755
new mode 100644
index f377947..33f8187
--- a/package/rpi-firmware/mkknlimg
+++ b/package/rpi-firmware/mkknlimg
@@ -1,25 +1,51 @@
#!/usr/bin/env perl
#
# Originaly from: https://github.com/raspberrypi/tools/blob/master/mkimage/mkknlimg
-# Original cset : 92a2df13b887f4799554bf92c4fc78d53668c868
+# Original cset : f5642106425d430e1f82ee064121a5fd0e05a386
+#
+# ----------------------------------------------------------------------
+# mkknlimg by Phil Elwell for Raspberry Pi
+# based on extract-ikconfig by Dick Streefland
+#
+# (c) 2009,2010 Dick Streefland <dick@streefland.net>
+# (c) 2014,2015 Raspberry Pi (Trading) Limited <info@raspberrypi.org>
+#
+# Licensed under the terms of the GNU General Public License.
+# ----------------------------------------------------------------------
use strict;
+use warnings;
use integer;
+use constant FLAG_PI => 1;
+use constant FLAG_DTOK => 2;
+use constant FLAG_DDTK => 4;
+use constant FLAG_283X => 8;
+
my $trailer_magic = 'RPTL';
my $tmpfile1 = "/tmp/mkknlimg_$$.1";
my $tmpfile2 = "/tmp/mkknlimg_$$.2";
my $dtok = 0;
+my $ddtk = 0;
+my $is_283x = 0;
-while ($ARGV[0] =~ /^-/)
+while (@ARGV && ($ARGV[0] =~ /^-/))
{
my $arg = shift(@ARGV);
if ($arg eq '--dtok')
{
$dtok = 1;
}
+ elsif ($arg eq '--ddtk')
+ {
+ $ddtk = 1;
+ }
+ elsif ($arg eq '--283x')
+ {
+ $is_283x = 1;
+ }
else
{
print ("* Unknown option '$arg'\n");
@@ -32,56 +58,68 @@ usage() if (@ARGV != 2);
my $kernel_file = $ARGV[0];
my $out_file = $ARGV[1];
-my @wanted_config_lines =
-(
- 'CONFIG_BCM2708_DT'
-);
+if (! -r $kernel_file)
+{
+ print ("* File '$kernel_file' not found\n");
+ usage();
+}
-my @wanted_strings =
-(
- 'bcm2708_fb',
- 'brcm,bcm2708-pinctrl',
- 'brcm,bcm2835-gpio',
- 'of_find_property'
-);
+my $wanted_configs =
+{
+ 'CONFIG_BCM2708_DT' => FLAG_PI | FLAG_DTOK,
+ 'CONFIG_ARCH_BCM2835' => FLAG_PI | FLAG_DTOK | FLAG_283X,
+};
+
+my $wanted_strings =
+{
+ 'bcm2708_fb' => FLAG_PI,
+ 'brcm,bcm2835-mmc' => FLAG_PI,
+ 'brcm,bcm2835-sdhost' => FLAG_PI,
+ 'brcm,bcm2708-pinctrl' => FLAG_PI | FLAG_DTOK,
+ 'brcm,bcm2835-gpio' => FLAG_PI | FLAG_DTOK,
+ 'brcm,bcm2835-pm-wdt' => FLAG_PI | FLAG_DTOK | FLAG_283X,
+ 'of_overlay_apply' => FLAG_DTOK | FLAG_DDTK,
+};
my $res = try_extract($kernel_file, $tmpfile1);
-
-$res = try_decompress('\037\213\010', 'xy', 'gunzip', 0,
- $kernel_file, $tmpfile1, $tmpfile2) if (!$res);
-$res = try_decompress('\3757zXZ\000', 'abcde', 'unxz --single-stream', -1,
- $kernel_file, $tmpfile1, $tmpfile2) if (!$res);
-$res = try_decompress('BZh', 'xy', 'bunzip2', 0,
- $kernel_file, $tmpfile1, $tmpfile2) if (!$res);
-$res = try_decompress('\135\0\0\0', 'xxx', 'unlzma', 0,
- $kernel_file, $tmpfile1, $tmpfile2) if (!$res);
-$res = try_decompress('\211\114\132', 'xy', 'lzop -d', 0,
- $kernel_file, $tmpfile1, $tmpfile2) if (!$res);
+$res ||= try_decompress('\037\213\010', 'xy', 'gunzip', 0,
+ $kernel_file, $tmpfile1, $tmpfile2);
+$res ||= try_decompress('\3757zXZ\000', 'abcde', 'unxz --single-stream', -1,
+ $kernel_file, $tmpfile1, $tmpfile2);
+$res ||= try_decompress('BZh', 'xy', 'bunzip2', 0,
+ $kernel_file, $tmpfile1, $tmpfile2);
+$res ||= try_decompress('\135\0\0\0', 'xxx', 'unlzma', 0,
+ $kernel_file, $tmpfile1, $tmpfile2);
+$res ||= try_decompress('\211\114\132', 'xy', 'lzop -d', 0,
+ $kernel_file, $tmpfile1, $tmpfile2);
+$res ||= try_decompress('\002\041\114\030', 'xy', 'lz4 -d', 1,
+ $kernel_file, $tmpfile1, $tmpfile2);
my $append_trailer;
my $trailer;
+my $kver = '?';
+
+$append_trailer = $dtok;
if ($res)
{
- print("Version: $res->{''}\n");
+ $kver = $res->{'kver'} || '?';
+ my $flags = $res->{'flags'};
+ print("Version: $kver\n");
- $append_trailer = $dtok;
- if (!$dtok)
+ if ($flags & FLAG_PI)
{
- if (config_bool($res, 'bcm2708_fb'))
- {
- $dtok ||= config_bool($res, 'CONFIG_BCM2708_DT');
- $dtok ||= config_bool($res, 'brcm,bcm2708-pinctrl');
- $dtok ||= config_bool($res, 'brcm,bcm2835-gpio');
- $append_trailer = 1;
- }
- else
- {
- print ("* This doesn't look like a Raspberry Pi kernel. In pass-through mode.\n");
- }
+ $append_trailer = 1;
+ $dtok ||= ($flags & FLAG_DTOK) != 0;
+ $is_283x ||= ($flags & FLAG_283X) != 0;
+ $ddtk ||= ($flags & FLAG_DDTK) != 0;
+ }
+ else
+ {
+ print ("* This doesn't look like a Raspberry Pi kernel. In pass-through mode.\n");
}
}
-else
+elsif (!$dtok)
{
print ("* Is this a valid kernel? In pass-through mode.\n");
}
@@ -89,12 +127,16 @@ else
if ($append_trailer)
{
printf("DT: %s\n", $dtok ? "y" : "n");
+ printf("DDT: %s\n", $ddtk ? "y" : "n");
+ printf("283x: %s\n", $is_283x ? "y" : "n");
my @atoms;
push @atoms, [ $trailer_magic, pack('V', 0) ];
- push @atoms, [ 'KVer', $res->{''} ];
+ push @atoms, [ 'KVer', $kver ];
push @atoms, [ 'DTOK', pack('V', $dtok) ];
+ push @atoms, [ 'DDTK', pack('V', $ddtk) ];
+ push @atoms, [ '283x', pack('V', $is_283x) ];
$trailer = pack_trailer(\@atoms);
$atoms[0]->[1] = pack('V', length($trailer));
@@ -102,17 +144,31 @@ if ($append_trailer)
$trailer = pack_trailer(\@atoms);
}
-die "* Failed to open '$kernel_file'\n" if (!open(my $ifh, '<', $kernel_file));
-die "* Failed to create '$out_file'\n" if (!open(my $ofh, '>', $out_file));
-
-my $copybuf;
+my $ofh;
my $total_len = 0;
-while (1)
+
+if ($out_file eq $kernel_file)
{
+ die "* Failed to open '$out_file' for append\n"
+ if (!open($ofh, '>>', $out_file));
+ $total_len = tell($ofh);
+}
+else
+{
+ die "* Failed to open '$kernel_file'\n"
+ if (!open(my $ifh, '<', $kernel_file));
+ die "* Failed to create '$out_file'\n"
+ if (!open($ofh, '>', $out_file));
+
+ my $copybuf;
+ while (1)
+ {
my $bytes = sysread($ifh, $copybuf, 64*1024);
last if (!$bytes);
syswrite($ofh, $copybuf, $bytes);
$total_len += $bytes;
+ }
+ close($ifh);
}
if ($trailer)
@@ -122,7 +178,6 @@ if ($trailer)
syswrite($ofh, $trailer);
}
-close($ifh);
close($ofh);
exit($trailer ? 0 : 1);
@@ -135,7 +190,7 @@ END {
sub usage
{
- print ("Usage: mkknlimg [--dtok] <vmlinux|zImage|bzImage> <outfile>\n");
+ print ("Usage: mkknlimg [--dtok] [--283x] <vmlinux|zImage|bzImage> <outfile>\n");
exit(1);
}
@@ -149,40 +204,9 @@ sub try_extract
chomp($ver);
- my $res = { ''=>$ver };
- my $string_pattern = '^('.join('|', @wanted_strings).')$';
-
- my @matches = `strings \"$knl\" | grep -E \"$string_pattern\"`;
- foreach my $match (@matches)
- {
- chomp($match);
- $res->{$match} = 1;
- }
-
- my $config_pattern = '^('.join('|', @wanted_config_lines).')=(.*)$';
- my $cf1 = 'IKCFG_ST\037\213\010';
- my $cf2 = '0123456789';
-
- my $pos = `tr "$cf1\n$cf2" "\n$cf2=" < "$knl" | grep -abo "^$cf2"`;
- if ($pos)
- {
- $pos =~ s/:.*[\r\n]*$//s;
- $pos += 8;
- my $err = (system("tail -c+$pos \"$knl\" | zcat > $tmp 2> /dev/null") >> 8);
- if (($err == 0) || ($err == 2))
- {
- if (open(my $fh, '<', $tmp))
- {
- while (my $line = <$fh>)
- {
- chomp($line);
- $res->{$1} = $2 if ($line =~ /$config_pattern/);
- }
-
- close($fh);
- }
- }
- }
+ my $res = { 'kver'=>$ver };
+ $res->{'flags'} = strings_to_flags($knl, $wanted_strings) |
+ configs_to_flags($knl, $tmp, $wanted_configs);
return $res;
}
@@ -197,6 +221,7 @@ sub try_decompress
{
chomp($pos);
$pos = (split(/[\r\n]+/, $pos))[$idx];
+ return undef if (!defined($pos));
$pos =~ s/:.*[\r\n]*$//s;
my $cmd = "tail -c+$pos \"$knl\" | $zcat > $tmp2 2> /dev/null";
my $err = (system($cmd) >> 8);
@@ -208,6 +233,59 @@ sub try_decompress
return undef;
}
+
+sub strings_to_flags
+{
+ my ($knl, $strings) = @_;
+ my $string_pattern = '^('.join('|', keys(%$strings)).')$';
+ my $flags = 0;
+
+ my @matches = `strings \"$knl\" | grep -E \"$string_pattern\"`;
+ foreach my $match (@matches)
+ {
+ chomp($match);
+ $flags |= $strings->{$match};
+ }
+
+ return $flags;
+}
+
+sub configs_to_flags
+{
+ my ($knl, $tmp, $configs) = @_;
+ my $config_pattern = '^('.join('|', keys(%$configs)).')=(.*)$';
+ my $cf1 = 'IKCFG_ST\037\213\010';
+ my $cf2 = '0123456789';
+ my $flags = 0;
+
+ my $pos = `tr "$cf1\n$cf2" "\n$cf2=" < "$knl" | grep -abo "^$cf2"`;
+ if ($pos)
+ {
+ $pos =~ s/:.*[\r\n]*$//s;
+ $pos += 8;
+ my $err = (system("tail -c+$pos \"$knl\" | zcat > $tmp 2> /dev/null") >> 8);
+ if (($err == 0) || ($err == 2))
+ {
+ if (open(my $fh, '<', $tmp))
+ {
+ while (my $line = <$fh>)
+ {
+ chomp($line);
+ if (($line =~ /$config_pattern/) &&
+ (($2 eq 'y') || ($2 eq 'm')))
+ {
+ $flags |= $configs->{$1};
+ }
+ }
+
+ close($fh);
+ }
+ }
+ }
+
+ return $flags;
+}
+
sub pack_trailer
{
my ($atoms) = @_;
@@ -219,9 +297,3 @@ sub pack_trailer
}
return $trailer;
}
-
-sub config_bool
-{
- my ($configs, $wanted) = @_;
- return (($configs->{$wanted} eq 'y') || ($configs->{$wanted} eq '1'));
-}
--
2.1.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 2/5] package/rpi-firmware: bump version
2015-08-13 16:22 [Buildroot] [PATCH 0/5] rpi: global update Benoît Thébaudeau
2015-08-13 16:22 ` [Buildroot] [PATCH 1/5] package/rpi-firmware: bump marking script version Benoît Thébaudeau
@ 2015-08-13 16:22 ` Benoît Thébaudeau
2015-08-13 16:22 ` [Buildroot] [PATCH 3/5] configs/raspberrypi: bump kernel version to 4.1.5 Benoît Thébaudeau
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Benoît Thébaudeau @ 2015-08-13 16:22 UTC (permalink / raw)
To: buildroot
Misc enhancements and fixes all over the place, most notably:
- FW: better overclocking, add Mediatek mt7601u Wi-Fi driver, bump
kernel version to 4.1.5...
- DT: fix SPI, I?S, gpio-poweroff, add MCP7941X, uart1, Fen Logic
VGA666 board, RPi Sense HAT...
- video: add early frame sequential 3D support, YUV_UV destination
format, qpu deinterlace...
Signed-off-by: Beno?t Th?baudeau <benoit@wsystem.com>
---
package/rpi-firmware/rpi-firmware.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/rpi-firmware/rpi-firmware.mk b/package/rpi-firmware/rpi-firmware.mk
index 1ef15aa..2436376 100644
--- a/package/rpi-firmware/rpi-firmware.mk
+++ b/package/rpi-firmware/rpi-firmware.mk
@@ -4,7 +4,7 @@
#
################################################################################
-RPI_FIRMWARE_VERSION = 856e2e1907a7f7058289c30268515c8cbf3fa5e3
+RPI_FIRMWARE_VERSION = 52f65ac4ad1ef1d2838fa2f921d5bc3ece4c777b
RPI_FIRMWARE_SITE = $(call github,raspberrypi,firmware,$(RPI_FIRMWARE_VERSION))
RPI_FIRMWARE_LICENSE = BSD-3c
RPI_FIRMWARE_LICENSE_FILES = boot/LICENCE.broadcom
--
2.1.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 3/5] configs/raspberrypi: bump kernel version to 4.1.5
2015-08-13 16:22 [Buildroot] [PATCH 0/5] rpi: global update Benoît Thébaudeau
2015-08-13 16:22 ` [Buildroot] [PATCH 1/5] package/rpi-firmware: bump marking script version Benoît Thébaudeau
2015-08-13 16:22 ` [Buildroot] [PATCH 2/5] package/rpi-firmware: bump version Benoît Thébaudeau
@ 2015-08-13 16:22 ` Benoît Thébaudeau
2015-08-13 16:22 ` [Buildroot] [PATCH 4/5] configs/raspberrypi2: " Benoît Thébaudeau
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Benoît Thébaudeau @ 2015-08-13 16:22 UTC (permalink / raw)
To: buildroot
Signed-off-by: Beno?t Th?baudeau <benoit@wsystem.com>
---
configs/raspberrypi_defconfig | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/configs/raspberrypi_defconfig b/configs/raspberrypi_defconfig
index 61487a4..af702a3 100644
--- a/configs/raspberrypi_defconfig
+++ b/configs/raspberrypi_defconfig
@@ -3,19 +3,18 @@ BR2_arm1176jzf_s=y
BR2_TARGET_GENERIC_GETTY_PORT="tty1"
-# Lock to 4.0 headers as the RPi kernel stable tree is
-# based off the 4.0 branch
+# Lock to 4.1 headers as the RPi kernel stable tree is
+# based off the 4.1 branch
BR2_KERNEL_HEADERS_VERSION=y
-BR2_DEFAULT_KERNEL_VERSION="4.0.6"
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_0=y
+BR2_DEFAULT_KERNEL_VERSION="4.1.5"
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_1=y
BR2_TOOLCHAIN_BUILDROOT_CXX=y
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_GIT=y
BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/raspberrypi/linux.git"
-BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="f90f981770e3ac8506dc84c9cd01471faaa0b0c2"
-BR2_LINUX_KERNEL_USE_DEFCONFIG=y
+BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="592503752b6951972f161f04280683c5af38d173"
BR2_LINUX_KERNEL_DEFCONFIG="bcmrpi"
BR2_LINUX_KERNEL_ZIMAGE=y
--
2.1.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 4/5] configs/raspberrypi2: bump kernel version to 4.1.5
2015-08-13 16:22 [Buildroot] [PATCH 0/5] rpi: global update Benoît Thébaudeau
` (2 preceding siblings ...)
2015-08-13 16:22 ` [Buildroot] [PATCH 3/5] configs/raspberrypi: bump kernel version to 4.1.5 Benoît Thébaudeau
@ 2015-08-13 16:22 ` Benoît Thébaudeau
2015-08-13 16:22 ` [Buildroot] [PATCH 5/5] package/rpi-userland: bump version Benoît Thébaudeau
2015-08-18 12:39 ` [Buildroot] [PATCH 0/5] rpi: global update Thomas Petazzoni
5 siblings, 0 replies; 7+ messages in thread
From: Benoît Thébaudeau @ 2015-08-13 16:22 UTC (permalink / raw)
To: buildroot
Signed-off-by: Beno?t Th?baudeau <benoit@wsystem.com>
---
configs/raspberrypi2_defconfig | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/configs/raspberrypi2_defconfig b/configs/raspberrypi2_defconfig
index 02603a2..7e49f0c 100644
--- a/configs/raspberrypi2_defconfig
+++ b/configs/raspberrypi2_defconfig
@@ -7,16 +7,16 @@ BR2_TOOLCHAIN_BUILDROOT_CXX=y
BR2_TARGET_GENERIC_GETTY_PORT="tty1"
-# Lock to 4.0 headers as the RPi kernel stable tree is
-# based off the 4.0 branch
+# Lock to 4.1 headers as the RPi kernel stable tree is
+# based off the 4.1 branch
BR2_KERNEL_HEADERS_VERSION=y
-BR2_DEFAULT_KERNEL_VERSION="4.0.6"
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_0=y
+BR2_DEFAULT_KERNEL_VERSION="4.1.5"
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_1=y
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_GIT=y
BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/raspberrypi/linux.git"
-BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="f90f981770e3ac8506dc84c9cd01471faaa0b0c2"
+BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="592503752b6951972f161f04280683c5af38d173"
BR2_LINUX_KERNEL_DEFCONFIG="bcm2709"
BR2_LINUX_KERNEL_ZIMAGE=y
--
2.1.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 5/5] package/rpi-userland: bump version
2015-08-13 16:22 [Buildroot] [PATCH 0/5] rpi: global update Benoît Thébaudeau
` (3 preceding siblings ...)
2015-08-13 16:22 ` [Buildroot] [PATCH 4/5] configs/raspberrypi2: " Benoît Thébaudeau
@ 2015-08-13 16:22 ` Benoît Thébaudeau
2015-08-18 12:39 ` [Buildroot] [PATCH 0/5] rpi: global update Thomas Petazzoni
5 siblings, 0 replies; 7+ messages in thread
From: Benoît Thébaudeau @ 2015-08-13 16:22 UTC (permalink / raw)
To: buildroot
Changes since last version:
- early frame sequential 3D support,
- add exposure=off option,
- khronos: merge with more recent header file,
- vchiq: better error handling.
Signed-off-by: Beno?t Th?baudeau <benoit@wsystem.com>
---
package/rpi-userland/rpi-userland.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/rpi-userland/rpi-userland.mk b/package/rpi-userland/rpi-userland.mk
index 403409d..f1914a2 100644
--- a/package/rpi-userland/rpi-userland.mk
+++ b/package/rpi-userland/rpi-userland.mk
@@ -4,7 +4,7 @@
#
################################################################################
-RPI_USERLAND_VERSION = b834074d0c0d9d7e64c133ab14ed691999cee990
+RPI_USERLAND_VERSION = b864a841e5a459a66a890c22b3a34127cd226238
RPI_USERLAND_SITE = $(call github,raspberrypi,userland,$(RPI_USERLAND_VERSION))
RPI_USERLAND_LICENSE = BSD-3c
RPI_USERLAND_LICENSE_FILES = LICENCE
--
2.1.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 0/5] rpi: global update
2015-08-13 16:22 [Buildroot] [PATCH 0/5] rpi: global update Benoît Thébaudeau
` (4 preceding siblings ...)
2015-08-13 16:22 ` [Buildroot] [PATCH 5/5] package/rpi-userland: bump version Benoît Thébaudeau
@ 2015-08-18 12:39 ` Thomas Petazzoni
5 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2015-08-18 12:39 UTC (permalink / raw)
To: buildroot
Dear Beno?t Th?baudeau,
On Thu, 13 Aug 2015 18:22:46 +0200, Beno?t Th?baudeau wrote:
> Beno?t Th?baudeau (5):
> package/rpi-firmware: bump marking script version
> package/rpi-firmware: bump version
> configs/raspberrypi: bump kernel version to 4.1.5
> configs/raspberrypi2: bump kernel version to 4.1.5
> package/rpi-userland: bump version
Applied to next, thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2015-08-18 12:39 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-13 16:22 [Buildroot] [PATCH 0/5] rpi: global update Benoît Thébaudeau
2015-08-13 16:22 ` [Buildroot] [PATCH 1/5] package/rpi-firmware: bump marking script version Benoît Thébaudeau
2015-08-13 16:22 ` [Buildroot] [PATCH 2/5] package/rpi-firmware: bump version Benoît Thébaudeau
2015-08-13 16:22 ` [Buildroot] [PATCH 3/5] configs/raspberrypi: bump kernel version to 4.1.5 Benoît Thébaudeau
2015-08-13 16:22 ` [Buildroot] [PATCH 4/5] configs/raspberrypi2: " Benoît Thébaudeau
2015-08-13 16:22 ` [Buildroot] [PATCH 5/5] package/rpi-userland: bump version Benoît Thébaudeau
2015-08-18 12:39 ` [Buildroot] [PATCH 0/5] rpi: global update Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox