* [U-Boot] [PATCH 1/4] sunxi: Removed dram files cleanup in MAINTAINERS
@ 2015-04-12 20:22 Paul Kocialkowski
2015-04-12 20:22 ` [U-Boot] [PATCH 2/4] sunxi: Proper iNet board config naming Paul Kocialkowski
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Paul Kocialkowski @ 2015-04-12 20:22 UTC (permalink / raw)
To: u-boot
A few dram files were still listed as maintained even though they were removed
some time ago
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
---
board/sunxi/MAINTAINERS | 3 ---
1 file changed, 3 deletions(-)
diff --git a/board/sunxi/MAINTAINERS b/board/sunxi/MAINTAINERS
index f368d6f..458d4e5 100644
--- a/board/sunxi/MAINTAINERS
+++ b/board/sunxi/MAINTAINERS
@@ -42,13 +42,11 @@ F: configs/Ippo_q8h_v1_2_defconfig
A20-OLINUXINO-LIME BOARD
M: FUKAUMI Naoki <naobsd@gmail.com>
S: Maintained
-F: board/sunxi/dram_a20_olinuxino_l.c
F: configs/A20-OLinuXino-Lime_defconfig
A20-OLINUXINO-LIME2 BOARD
M: Iain Paton <ipaton0@gmail.com>
S: Maintained
-F: board/sunxi/dram_a20_olinuxino_l2.c
F: configs/A20-OLinuXino-Lime2_defconfig
AINOL AW1 BOARD
@@ -92,7 +90,6 @@ F: configs/Hummingbird_A31_defconfig
INET-86VS BOARD
M: Michal Suchanek <hramrach@gmail.com>
S: Maintained
-F: board/sunxi/dram_inet_86vs.c
F: configs/Inet_86VS_defconfig
IPPO-Q8H-V5 BOARD
--
1.9.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH 2/4] sunxi: Proper iNet board config naming
2015-04-12 20:22 [U-Boot] [PATCH 1/4] sunxi: Removed dram files cleanup in MAINTAINERS Paul Kocialkowski
@ 2015-04-12 20:22 ` Paul Kocialkowski
2015-04-12 20:26 ` Paul Kocialkowski
2015-04-12 20:22 ` [U-Boot] [PATCH 3/4] sunxi: iNet 3W support Paul Kocialkowski
` (2 subsequent siblings)
3 siblings, 1 reply; 8+ messages in thread
From: Paul Kocialkowski @ 2015-04-12 20:22 UTC (permalink / raw)
To: u-boot
The official name for the iNet manufacturer is iNet with a lowercase i and an
uppercase N.
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
---
board/sunxi/MAINTAINERS | 4 ++--
configs/Inet_86VS_defconfig | 16 ----------------
configs/iNet_86VS_defconfig | 16 ++++++++++++++++
3 files changed, 18 insertions(+), 18 deletions(-)
delete mode 100644 configs/Inet_86VS_defconfig
create mode 100644 configs/iNet_86VS_defconfig
diff --git a/board/sunxi/MAINTAINERS b/board/sunxi/MAINTAINERS
index 458d4e5..6e5142f 100644
--- a/board/sunxi/MAINTAINERS
+++ b/board/sunxi/MAINTAINERS
@@ -87,10 +87,10 @@ M: Chen-Yu Tsai <wens@csie.org>
S: Maintained
F: configs/Hummingbird_A31_defconfig
-INET-86VS BOARD
+INET 86VS BOARD
M: Michal Suchanek <hramrach@gmail.com>
S: Maintained
-F: configs/Inet_86VS_defconfig
+F: configs/iNet_86VS_defconfig
IPPO-Q8H-V5 BOARD
M: Chen-Yu Tsai <wens@csie.org>
diff --git a/configs/Inet_86VS_defconfig b/configs/Inet_86VS_defconfig
deleted file mode 100644
index e5c103f..0000000
--- a/configs/Inet_86VS_defconfig
+++ /dev/null
@@ -1,16 +0,0 @@
-CONFIG_SPL=y
-CONFIG_SYS_EXTRA_OPTIONS="AXP209_POWER"
-CONFIG_FDTFILE="sun5i-a13-inet-86vs.dtb"
-CONFIG_USB_MUSB_SUNXI=y
-CONFIG_USB0_VBUS_PIN="PG12"
-CONFIG_USB0_VBUS_DET="PG1"
-CONFIG_VIDEO_LCD_MODE="x:800,y:480,depth:18,pclk_khz:33000,le:45,ri:209,up:22,lo:22,hs:1,vs:1,sync:3,vmode:0"
-CONFIG_VIDEO_LCD_POWER="AXP0-0"
-CONFIG_VIDEO_LCD_BL_EN="AXP0-1"
-CONFIG_VIDEO_LCD_BL_PWM="PB2"
-CONFIG_ARM=y
-CONFIG_ARCH_SUNXI=y
-CONFIG_MACH_SUN5I=y
-CONFIG_DRAM_CLK=408
-CONFIG_DRAM_ZQ=123
-CONFIG_DRAM_EMR1=4
diff --git a/configs/iNet_86VS_defconfig b/configs/iNet_86VS_defconfig
new file mode 100644
index 0000000..e5c103f
--- /dev/null
+++ b/configs/iNet_86VS_defconfig
@@ -0,0 +1,16 @@
+CONFIG_SPL=y
+CONFIG_SYS_EXTRA_OPTIONS="AXP209_POWER"
+CONFIG_FDTFILE="sun5i-a13-inet-86vs.dtb"
+CONFIG_USB_MUSB_SUNXI=y
+CONFIG_USB0_VBUS_PIN="PG12"
+CONFIG_USB0_VBUS_DET="PG1"
+CONFIG_VIDEO_LCD_MODE="x:800,y:480,depth:18,pclk_khz:33000,le:45,ri:209,up:22,lo:22,hs:1,vs:1,sync:3,vmode:0"
+CONFIG_VIDEO_LCD_POWER="AXP0-0"
+CONFIG_VIDEO_LCD_BL_EN="AXP0-1"
+CONFIG_VIDEO_LCD_BL_PWM="PB2"
+CONFIG_ARM=y
+CONFIG_ARCH_SUNXI=y
+CONFIG_MACH_SUN5I=y
+CONFIG_DRAM_CLK=408
+CONFIG_DRAM_ZQ=123
+CONFIG_DRAM_EMR1=4
--
1.9.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH 3/4] sunxi: iNet 3W support
2015-04-12 20:22 [U-Boot] [PATCH 1/4] sunxi: Removed dram files cleanup in MAINTAINERS Paul Kocialkowski
2015-04-12 20:22 ` [U-Boot] [PATCH 2/4] sunxi: Proper iNet board config naming Paul Kocialkowski
@ 2015-04-12 20:22 ` Paul Kocialkowski
2015-04-12 20:22 ` [U-Boot] [PATCH 4/4] sunxi: iNet 3F support Paul Kocialkowski
2015-04-15 14:36 ` [U-Boot] [PATCH 1/4] sunxi: Removed dram files cleanup in MAINTAINERS Hans de Goede
3 siblings, 0 replies; 8+ messages in thread
From: Paul Kocialkowski @ 2015-04-12 20:22 UTC (permalink / raw)
To: u-boot
The iNet 3W is an A10 tablet with 1GiB RAM and a 1024x768 screen.
Also see: http://linux-sunxi.org/INet_3W
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
---
board/sunxi/MAINTAINERS | 5 +++++
configs/iNet_3W_defconfig | 17 +++++++++++++++++
2 files changed, 22 insertions(+)
create mode 100644 configs/iNet_3W_defconfig
diff --git a/board/sunxi/MAINTAINERS b/board/sunxi/MAINTAINERS
index 6e5142f..b779d52 100644
--- a/board/sunxi/MAINTAINERS
+++ b/board/sunxi/MAINTAINERS
@@ -87,6 +87,11 @@ M: Chen-Yu Tsai <wens@csie.org>
S: Maintained
F: configs/Hummingbird_A31_defconfig
+INET 3W BOARD
+M: Paul Kocialkowski <contact@paulk.fr>
+S: Maintained
+F: configs/iNet_3W_defconfig
+
INET 86VS BOARD
M: Michal Suchanek <hramrach@gmail.com>
S: Maintained
diff --git a/configs/iNet_3W_defconfig b/configs/iNet_3W_defconfig
new file mode 100644
index 0000000..061681a
--- /dev/null
+++ b/configs/iNet_3W_defconfig
@@ -0,0 +1,17 @@
+CONFIG_SPL=y
+CONFIG_SYS_EXTRA_OPTIONS="AXP209_POWER"
+CONFIG_FDTFILE="sun4i-a10-inet-3w.dtb"
+CONFIG_MMC0_CD_PIN="PH20"
+CONFIG_USB_MUSB_SUNXI=y
+CONFIG_USB0_VBUS_PIN="PB9"
+CONFIG_USB0_VBUS_DET="PH5"
+CONFIG_VIDEO_LCD_MODE="x:1024,y:768,depth:24,pclk_khz:65000,le:159,ri:160,up:22,lo:15,hs:1,vs:1,sync:3,vmode:0"
+CONFIG_VIDEO_LCD_POWER="PH8"
+CONFIG_VIDEO_LCD_BL_EN="PH7"
+CONFIG_VIDEO_LCD_BL_PWM="PB2"
+CONFIG_ARM=y
+CONFIG_ARCH_SUNXI=y
+CONFIG_MACH_SUN4I=y
+CONFIG_DRAM_CLK=408
+CONFIG_DRAM_ZQ=127
+CONFIG_DRAM_EMR1=4
--
1.9.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH 4/4] sunxi: iNet 3F support
2015-04-12 20:22 [U-Boot] [PATCH 1/4] sunxi: Removed dram files cleanup in MAINTAINERS Paul Kocialkowski
2015-04-12 20:22 ` [U-Boot] [PATCH 2/4] sunxi: Proper iNet board config naming Paul Kocialkowski
2015-04-12 20:22 ` [U-Boot] [PATCH 3/4] sunxi: iNet 3W support Paul Kocialkowski
@ 2015-04-12 20:22 ` Paul Kocialkowski
2015-04-15 14:36 ` [U-Boot] [PATCH 1/4] sunxi: Removed dram files cleanup in MAINTAINERS Hans de Goede
3 siblings, 0 replies; 8+ messages in thread
From: Paul Kocialkowski @ 2015-04-12 20:22 UTC (permalink / raw)
To: u-boot
The iNet 3F is an A10 tablet with 1GiB RAM and a 1024x768 screen.
Also see: http://linux-sunxi.org/INet_3F
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
---
board/sunxi/MAINTAINERS | 5 +++++
configs/iNet_3F_defconfig | 18 ++++++++++++++++++
2 files changed, 23 insertions(+)
create mode 100644 configs/iNet_3F_defconfig
diff --git a/board/sunxi/MAINTAINERS b/board/sunxi/MAINTAINERS
index b779d52..75e8b5a 100644
--- a/board/sunxi/MAINTAINERS
+++ b/board/sunxi/MAINTAINERS
@@ -87,6 +87,11 @@ M: Chen-Yu Tsai <wens@csie.org>
S: Maintained
F: configs/Hummingbird_A31_defconfig
+INET 3F BOARD
+M: Paul Kocialkowski <contact@paulk.fr>
+S: Maintained
+F: configs/iNet_3F_defconfig
+
INET 3W BOARD
M: Paul Kocialkowski <contact@paulk.fr>
S: Maintained
diff --git a/configs/iNet_3F_defconfig b/configs/iNet_3F_defconfig
new file mode 100644
index 0000000..b79855b
--- /dev/null
+++ b/configs/iNet_3F_defconfig
@@ -0,0 +1,18 @@
+CONFIG_SPL=y
+CONFIG_SYS_EXTRA_OPTIONS="AXP209_POWER"
+CONFIG_FDTFILE="sun4i-a10-inet-3f.dtb"
+CONFIG_MMC0_CD_PIN="PH1"
+CONFIG_USB_MUSB_SUNXI=y
+CONFIG_USB0_VBUS_PIN="PB9"
+CONFIG_USB0_VBUS_DET="PH5"
+CONFIG_VIDEO_LCD_MODE="x:1024,y:768,depth:18,pclk_khz:100000,le:799,ri:260,up:15,lo:16,hs:1,vs:1,sync:3,vmode:0"
+CONFIG_VIDEO_LCD_PANEL_LVDS=y
+CONFIG_VIDEO_LCD_POWER="PH8"
+CONFIG_VIDEO_LCD_BL_EN="PH7"
+CONFIG_VIDEO_LCD_BL_PWM="PB2"
+CONFIG_ARM=y
+CONFIG_ARCH_SUNXI=y
+CONFIG_MACH_SUN4I=y
+CONFIG_DRAM_CLK=432
+CONFIG_DRAM_ZQ=123
+CONFIG_DRAM_EMR1=4
--
1.9.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH 2/4] sunxi: Proper iNet board config naming
2015-04-12 20:22 ` [U-Boot] [PATCH 2/4] sunxi: Proper iNet board config naming Paul Kocialkowski
@ 2015-04-12 20:26 ` Paul Kocialkowski
2015-04-12 21:03 ` Michal Suchanek
0 siblings, 1 reply; 8+ messages in thread
From: Paul Kocialkowski @ 2015-04-12 20:26 UTC (permalink / raw)
To: u-boot
Le dimanche 12 avril 2015 ? 22:22 +0200, Paul Kocialkowski a ?crit :
> The official name for the iNet manufacturer is iNet with a lowercase i and an
> uppercase N.
+CC the board maintainer
> Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
> ---
> board/sunxi/MAINTAINERS | 4 ++--
> configs/Inet_86VS_defconfig | 16 ----------------
> configs/iNet_86VS_defconfig | 16 ++++++++++++++++
> 3 files changed, 18 insertions(+), 18 deletions(-)
> delete mode 100644 configs/Inet_86VS_defconfig
> create mode 100644 configs/iNet_86VS_defconfig
>
> diff --git a/board/sunxi/MAINTAINERS b/board/sunxi/MAINTAINERS
> index 458d4e5..6e5142f 100644
> --- a/board/sunxi/MAINTAINERS
> +++ b/board/sunxi/MAINTAINERS
> @@ -87,10 +87,10 @@ M: Chen-Yu Tsai <wens@csie.org>
> S: Maintained
> F: configs/Hummingbird_A31_defconfig
>
> -INET-86VS BOARD
> +INET 86VS BOARD
> M: Michal Suchanek <hramrach@gmail.com>
> S: Maintained
> -F: configs/Inet_86VS_defconfig
> +F: configs/iNet_86VS_defconfig
>
> IPPO-Q8H-V5 BOARD
> M: Chen-Yu Tsai <wens@csie.org>
> diff --git a/configs/Inet_86VS_defconfig b/configs/Inet_86VS_defconfig
> deleted file mode 100644
> index e5c103f..0000000
> --- a/configs/Inet_86VS_defconfig
> +++ /dev/null
> @@ -1,16 +0,0 @@
> -CONFIG_SPL=y
> -CONFIG_SYS_EXTRA_OPTIONS="AXP209_POWER"
> -CONFIG_FDTFILE="sun5i-a13-inet-86vs.dtb"
> -CONFIG_USB_MUSB_SUNXI=y
> -CONFIG_USB0_VBUS_PIN="PG12"
> -CONFIG_USB0_VBUS_DET="PG1"
> -CONFIG_VIDEO_LCD_MODE="x:800,y:480,depth:18,pclk_khz:33000,le:45,ri:209,up:22,lo:22,hs:1,vs:1,sync:3,vmode:0"
> -CONFIG_VIDEO_LCD_POWER="AXP0-0"
> -CONFIG_VIDEO_LCD_BL_EN="AXP0-1"
> -CONFIG_VIDEO_LCD_BL_PWM="PB2"
> -CONFIG_ARM=y
> -CONFIG_ARCH_SUNXI=y
> -CONFIG_MACH_SUN5I=y
> -CONFIG_DRAM_CLK=408
> -CONFIG_DRAM_ZQ=123
> -CONFIG_DRAM_EMR1=4
> diff --git a/configs/iNet_86VS_defconfig b/configs/iNet_86VS_defconfig
> new file mode 100644
> index 0000000..e5c103f
> --- /dev/null
> +++ b/configs/iNet_86VS_defconfig
> @@ -0,0 +1,16 @@
> +CONFIG_SPL=y
> +CONFIG_SYS_EXTRA_OPTIONS="AXP209_POWER"
> +CONFIG_FDTFILE="sun5i-a13-inet-86vs.dtb"
> +CONFIG_USB_MUSB_SUNXI=y
> +CONFIG_USB0_VBUS_PIN="PG12"
> +CONFIG_USB0_VBUS_DET="PG1"
> +CONFIG_VIDEO_LCD_MODE="x:800,y:480,depth:18,pclk_khz:33000,le:45,ri:209,up:22,lo:22,hs:1,vs:1,sync:3,vmode:0"
> +CONFIG_VIDEO_LCD_POWER="AXP0-0"
> +CONFIG_VIDEO_LCD_BL_EN="AXP0-1"
> +CONFIG_VIDEO_LCD_BL_PWM="PB2"
> +CONFIG_ARM=y
> +CONFIG_ARCH_SUNXI=y
> +CONFIG_MACH_SUN5I=y
> +CONFIG_DRAM_CLK=408
> +CONFIG_DRAM_ZQ=123
> +CONFIG_DRAM_EMR1=4
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: This is a digitally signed message part
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150412/d1e35f16/attachment.sig>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH 2/4] sunxi: Proper iNet board config naming
2015-04-12 20:26 ` Paul Kocialkowski
@ 2015-04-12 21:03 ` Michal Suchanek
0 siblings, 0 replies; 8+ messages in thread
From: Michal Suchanek @ 2015-04-12 21:03 UTC (permalink / raw)
To: u-boot
On 12 April 2015 at 22:26, Paul Kocialkowski <contact@paulk.fr> wrote:
> Le dimanche 12 avril 2015 ? 22:22 +0200, Paul Kocialkowski a ?crit :
>> The official name for the iNet manufacturer is iNet with a lowercase i and an
>> uppercase N.
>
> +CC the board maintainer
>
Acked-by: Michal Suchanek <hramrach@gmail.com>
Thanks
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH 1/4] sunxi: Removed dram files cleanup in MAINTAINERS
2015-04-12 20:22 [U-Boot] [PATCH 1/4] sunxi: Removed dram files cleanup in MAINTAINERS Paul Kocialkowski
` (2 preceding siblings ...)
2015-04-12 20:22 ` [U-Boot] [PATCH 4/4] sunxi: iNet 3F support Paul Kocialkowski
@ 2015-04-15 14:36 ` Hans de Goede
2015-04-15 19:17 ` Paul Kocialkowski
3 siblings, 1 reply; 8+ messages in thread
From: Hans de Goede @ 2015-04-15 14:36 UTC (permalink / raw)
To: u-boot
Hi,
Thanks I've queued up the entire set into u-boot-sunxi/next, I'm running
some tests now once those are done I'll send a pullreq to get the
current u-boot-sunxi/next merged into master.
p.s. In the future if you add new board defconfig files please add a short
comment block at the top describing the board (the commit message will
usually do nicely) I've fixed that up for this time round.
Regards,
Hans
On 12-04-15 22:22, Paul Kocialkowski wrote:
> A few dram files were still listed as maintained even though they were removed
> some time ago
>
> Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
> ---
> board/sunxi/MAINTAINERS | 3 ---
> 1 file changed, 3 deletions(-)
>
> diff --git a/board/sunxi/MAINTAINERS b/board/sunxi/MAINTAINERS
> index f368d6f..458d4e5 100644
> --- a/board/sunxi/MAINTAINERS
> +++ b/board/sunxi/MAINTAINERS
> @@ -42,13 +42,11 @@ F: configs/Ippo_q8h_v1_2_defconfig
> A20-OLINUXINO-LIME BOARD
> M: FUKAUMI Naoki <naobsd@gmail.com>
> S: Maintained
> -F: board/sunxi/dram_a20_olinuxino_l.c
> F: configs/A20-OLinuXino-Lime_defconfig
>
> A20-OLINUXINO-LIME2 BOARD
> M: Iain Paton <ipaton0@gmail.com>
> S: Maintained
> -F: board/sunxi/dram_a20_olinuxino_l2.c
> F: configs/A20-OLinuXino-Lime2_defconfig
>
> AINOL AW1 BOARD
> @@ -92,7 +90,6 @@ F: configs/Hummingbird_A31_defconfig
> INET-86VS BOARD
> M: Michal Suchanek <hramrach@gmail.com>
> S: Maintained
> -F: board/sunxi/dram_inet_86vs.c
> F: configs/Inet_86VS_defconfig
>
> IPPO-Q8H-V5 BOARD
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH 1/4] sunxi: Removed dram files cleanup in MAINTAINERS
2015-04-15 14:36 ` [U-Boot] [PATCH 1/4] sunxi: Removed dram files cleanup in MAINTAINERS Hans de Goede
@ 2015-04-15 19:17 ` Paul Kocialkowski
0 siblings, 0 replies; 8+ messages in thread
From: Paul Kocialkowski @ 2015-04-15 19:17 UTC (permalink / raw)
To: u-boot
Le mercredi 15 avril 2015 ? 16:36 +0200, Hans de Goede a ?crit :
> Hi,
>
> Thanks I've queued up the entire set into u-boot-sunxi/next, I'm running
> some tests now once those are done I'll send a pullreq to get the
> current u-boot-sunxi/next merged into master.
>
> p.s. In the future if you add new board defconfig files please add a short
> comment block at the top describing the board (the commit message will
> usually do nicely) I've fixed that up for this time round.
Ack, thanks for merging!
> On 12-04-15 22:22, Paul Kocialkowski wrote:
> > A few dram files were still listed as maintained even though they were removed
> > some time ago
> >
> > Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
> > ---
> > board/sunxi/MAINTAINERS | 3 ---
> > 1 file changed, 3 deletions(-)
> >
> > diff --git a/board/sunxi/MAINTAINERS b/board/sunxi/MAINTAINERS
> > index f368d6f..458d4e5 100644
> > --- a/board/sunxi/MAINTAINERS
> > +++ b/board/sunxi/MAINTAINERS
> > @@ -42,13 +42,11 @@ F: configs/Ippo_q8h_v1_2_defconfig
> > A20-OLINUXINO-LIME BOARD
> > M: FUKAUMI Naoki <naobsd@gmail.com>
> > S: Maintained
> > -F: board/sunxi/dram_a20_olinuxino_l.c
> > F: configs/A20-OLinuXino-Lime_defconfig
> >
> > A20-OLINUXINO-LIME2 BOARD
> > M: Iain Paton <ipaton0@gmail.com>
> > S: Maintained
> > -F: board/sunxi/dram_a20_olinuxino_l2.c
> > F: configs/A20-OLinuXino-Lime2_defconfig
> >
> > AINOL AW1 BOARD
> > @@ -92,7 +90,6 @@ F: configs/Hummingbird_A31_defconfig
> > INET-86VS BOARD
> > M: Michal Suchanek <hramrach@gmail.com>
> > S: Maintained
> > -F: board/sunxi/dram_inet_86vs.c
> > F: configs/Inet_86VS_defconfig
> >
> > IPPO-Q8H-V5 BOARD
> >
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: This is a digitally signed message part
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150415/19d9068e/attachment.sig>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2015-04-15 19:17 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-12 20:22 [U-Boot] [PATCH 1/4] sunxi: Removed dram files cleanup in MAINTAINERS Paul Kocialkowski
2015-04-12 20:22 ` [U-Boot] [PATCH 2/4] sunxi: Proper iNet board config naming Paul Kocialkowski
2015-04-12 20:26 ` Paul Kocialkowski
2015-04-12 21:03 ` Michal Suchanek
2015-04-12 20:22 ` [U-Boot] [PATCH 3/4] sunxi: iNet 3W support Paul Kocialkowski
2015-04-12 20:22 ` [U-Boot] [PATCH 4/4] sunxi: iNet 3F support Paul Kocialkowski
2015-04-15 14:36 ` [U-Boot] [PATCH 1/4] sunxi: Removed dram files cleanup in MAINTAINERS Hans de Goede
2015-04-15 19:17 ` Paul Kocialkowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox