
Hi everyone,
It seems to be that the mailbox of the email address albert.u.boot@aribaud.net is quota exceeded, and all emails are rejected.
----- Final-Recipient: rfc822; albert.u.boot@aribaud.net.rmap1.bookmyname.com Original-Recipient: rfc822;albert.u.boot@aribaud.net Action: failed Status: 5.0.0 Remote-MTA: dns; 127.0.0.1 Diagnostic-Code: smtp; 552 4.2.2 albert.u.boot@aribaud.net.rmap1.bookmyname.com: Mailbox full -- Quota exceeded ... -----
could anyone inform about that please?
Best regards.
[image: photo] Óscar Gómez Fuente Electronic Engineer & Degree in Physical Sciences Mobile: 659.28.97.90 Email: oscargomezf@gmail.com Website: www.oscargomezf.com http://facebook.com/oscargomezf http://plus.google.com/oscargomezf http://us.linkedin.com/in/oscargomezf http://twitter.com/oscargomezf_com
On 18 October 2016 at 09:00, Michal Simek michal.simek@xilinx.com wrote:
On 17.10.2016 17:33, Oscar Gomez Fuente wrote:
Ok Michal,
Then you're suggesting change the zynq-picozed.dts file to:
dtsi.
diff --git a/arch/arm/dts/zynq-picozed.dts b/arch/arm/dts/zynq-picozed.
dts
index 3408df8..d8ed298 100644 --- a/arch/arm/dts/zynq-picozed.dts +++ b/arch/arm/dts/zynq-picozed.dts @@ -14,6 +14,8 @@
aliases { serial0 = &uart1;
spi0 = &qspi;
ethernet0 = &gem0; }; memory {
@@ -26,3 +28,18 @@ u-boot,dm-pre-reloc; status = "okay"; };
+&qspi {
u-boot,dm-pre-reloc;
status = "okay";
+};
keep node names sorted.
+&gem0 {
status = "okay";
phy-mode = "rgmii-id";
phy-handle = <ðernet_phy>;
ethernet_phy: ethernet-phy@0 {
reg = <0>;
};
+};
And add a new dts file with the configuration of the PizoZed FMC Carrier
V2
(in this case V2. Avnet has two PicoZed FMC carriers V1 and V2). For example: zynq-picozed-fmc-v2.dts
- Avnet PicoZed FMC carrier V2 DTS
- Copyright (C) 2015 Xilinx, Inc.
- SPDX-License-Identifier: GPL-2.0+
*/ /dts-v1/;
Depends how zynq-picozed.dtsi will look but this line above can be already there.
#include "zynq-picozed.dts"
/ { compatible = "xlnx,zynq-picozed", "xlnx,zynq-7000";
here "xlnx,zynq-picozed-fmc-v2", "xlnx,zynq-picozed", "xlnx,zynq-7000";
aliases { mmc0 = &sdhci0; }; };
&sdhci0 { u-boot,dm-pre-reloc; status = "okay"; };
Do you think the is the best way?
with changes above it looks reasonable.
Thanks, Michal