Alexey Brodkin
67ff9e11f3
wandboard: move environment partition farther from u-boot.img
...
Recently I started to notice that u-boot.img built for Wandboard
by some toolchains becomes so large that it basically overlaps with
U-Boot environment area on SD-card.
According to
http://wiki.wandboard.org/index.php/Boot-process#sdcard_boot_data_layout
Wandboard's SD-card layout is as follows:
------------------------------>8---------------------------
Acked-by: Otavio Salvador <otavio@ossystems.com.br >
Acked-by: Fabio Estevam <fabio.estevam@nxp.com >
==========================================================
1. 0x00000000 Reserved For MBR
2. 0x00000200 512 Secondary Image Table (optional)
3. 0x00000400 1024 uBoot Image (Starting From IVT)
4. 0x00060000 393216 start of uboot env (size:8k)
5. 0x00062000 end of uboot env
6. 0x00100000 1048576 Linux kernel start
7. 0x0076AC00 7777280 start of partition 1
------------------------------>8---------------------------
So for U-Boot we have 383kB (392192 bytes).
But in up to date U-Boot for Wandboard we build separately
a) SPL
b) u-boot.img
which gives us a bit more detailed SD-card layout:
------------------------------>8---------------------------
==========================================================
1. 0x00000000 Reserved For MBR
2. 0x00000200 512 Secondary Image Table (optional)
3. 0x00000400 1024 SPL
4. 0x00011400 70656 u-boot.img
5. 0x00060000 393216 start of uboot env (size:8k)
6. 0x00062000 end of uboot env
...
------------------------------>8---------------------------
>From that layout we may calculate amount of space reserved for
u-boot.img. It's just 315kb (322560 bytes).
Now if I build U-Boot with Sourcery CodeBench ARM 2014.05 produced
u-boot.img is already more than we expected
(323840 bytes instead of "< 322560"):
------------------------------>8---------------------------
ls -la u-boot.img
-rw-rw-r-- 1 user user 323840 Jul 5 07:38 u-boot.img
------------------------------>8---------------------------
Funny enough if I rebuild U-Boot with ARM toolchain available in
my Fedora 23 distro u-boot.img becomes a little bit smaller:
------------------------------>8---------------------------
ls -la u-boot.img
-rw-rw-r-- 1 user user 322216 Jul 5 07:39 u-boot.img
------------------------------>8---------------------------
What's worse this problem might not affect people most of the time
because what happens people would just copy u-boot.img on SD-card and
live in happiness with it... well until somebody attempts to save
environment in U-Boot with "saveenv" command which will simply
overwrite the very end of u-boot.img.
That will lead to unusable SD-card until user dd u-boot.img on
SD-card again.
I may foresee this issue in the future to become more visible once we
add more features in U-Boot for Wandboard or just existing code base
becomes bulkier and people will consistently get larger u-boot.img
files produced.
IMHO there's an obvious solution for all that - just move U-Boot's env
to the very end of the gap between U-Boot and the first real partition
on the SD-card. This patch will follow
8fb9eea565 ("mx6sabre_common: Fix U-Boot corruption after 'saveenv'").
So env is still not in the very end of the gap (obviously 256kb is way
too much for U-Boot's env) but at least we have now the same
partitioning for i.MX6 boards.
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com >
Cc: Fabio Estevam <fabio.estevam@nxp.com >
Cc: Otavio Salvador <otavio@ossystems.com.br >
Cc: Peter Robinson <pbrobinson@gmail.com >
Cc: Tom Rini <trini@konsulko.com >
Cc: Peter Korsgaard <peter@korsgaard.com >
Cc: Wolfgang Denk <wd@denx.de >
2016-07-19 19:52:12 +02:00
..
2016-07-07 13:34:10 +02:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-07-01 17:42:55 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:40 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-06-04 00:43:53 +02:00
2016-06-04 00:43:53 +02:00
2016-05-27 15:47:53 -04:00
2014-09-04 13:06:00 -04:00
2016-06-09 13:53:10 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-07-01 17:42:55 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-07-01 17:42:55 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:40 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-06-24 17:24:36 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:46 -04:00
2016-06-09 13:53:05 -04:00
2016-06-04 00:43:53 +02:00
2016-04-25 15:09:46 -04:00
2016-06-04 00:43:53 +02:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:46 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:46 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:46 -04:00
2016-06-04 00:43:53 +02:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:47 -04:00
2016-06-13 07:46:29 +09:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-24 17:24:39 -04:00
2016-06-24 17:24:40 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:40 -04:00
2016-02-24 18:44:03 -05:00
2016-02-24 18:44:03 -05:00
2016-06-09 13:53:05 -04:00
2016-07-01 17:42:55 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:40 -04:00
2016-03-17 10:27:27 +08:00
2016-03-22 12:19:53 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-05-20 17:02:07 -04:00
2016-07-01 17:42:55 -04:00
2016-07-01 17:42:55 -04:00
2016-06-09 13:53:05 -04:00
2016-05-20 17:02:07 -04:00
2016-07-01 17:42:55 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:46 -04:00
2016-06-17 09:34:49 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-26 20:17:22 +02:00
2016-02-21 13:42:52 +08:00
2016-07-01 17:42:55 -04:00
2016-07-01 17:42:55 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-05-17 09:54:43 -06:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-07-01 17:42:55 -04:00
2016-04-25 15:09:47 -04:00
2016-07-01 17:42:55 -04:00
2016-07-01 17:42:55 -04:00
2016-04-25 15:09:40 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:40 -04:00
2016-04-25 15:09:47 -04:00
2016-06-04 00:43:53 +02:00
2016-06-09 13:53:13 -04:00
2016-06-20 05:14:33 -04:00
2016-04-25 15:09:47 -04:00
2016-06-04 00:43:53 +02:00
2016-05-05 21:32:26 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-05-17 09:54:43 -06:00
2016-07-12 17:58:48 +02:00
2016-04-25 15:09:40 -04:00
2016-05-25 10:00:19 +09:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:13 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-06-06 13:39:43 -04:00
2016-05-25 13:25:19 +09:00
2016-06-04 00:43:53 +02:00
2016-05-25 10:00:19 +09:00
2016-07-01 17:42:55 -04:00
2016-01-26 08:06:13 +01:00
2016-06-09 13:53:05 -04:00
2016-05-17 09:54:43 -06:00
2016-07-01 17:42:55 -04:00
2016-06-18 10:25:13 +02:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:46 -04:00
2016-05-31 17:23:24 +02:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-05-17 09:54:43 -06:00
2016-05-05 21:39:26 -04:00
2016-07-01 17:42:55 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-05-17 17:52:20 +02:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:46 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-07-01 17:42:55 -04:00
2016-07-01 17:42:55 -04:00
2016-07-01 17:42:55 -04:00
2016-07-01 17:42:55 -04:00
2016-04-25 15:09:46 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-06-06 13:39:18 -04:00
2016-06-06 13:39:18 -04:00
2016-06-06 13:39:18 -04:00
2016-06-06 13:39:18 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:40 -04:00
2016-03-14 19:18:07 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:47 -04:00
2016-01-21 20:05:41 -07:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-07-01 17:42:55 -04:00
2016-06-09 13:53:05 -04:00
2016-06-06 13:37:56 -04:00
2016-06-06 13:37:56 -04:00
2016-06-06 13:37:56 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-28 12:08:53 -07:00
2016-06-04 00:43:53 +02:00
2016-06-10 13:45:01 -07:00
2016-05-27 10:01:12 -04:00
2016-06-10 13:44:59 -07:00
2016-06-10 13:45:01 -07:00
2016-06-04 00:43:53 +02:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:40 -04:00
2016-05-31 09:38:11 +02:00
2016-04-25 15:09:40 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-07-01 17:42:55 -04:00
2016-06-24 17:24:33 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-05-23 15:18:00 +08:00
2016-07-01 17:42:55 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 14:22:43 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-06-13 07:46:29 +09:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-07-12 17:58:48 +02:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:40 -04:00
2016-07-12 17:58:49 +02:00
2016-07-12 17:58:49 +02:00
2016-07-12 17:58:49 +02:00
2016-05-02 21:04:36 -04:00
2016-06-13 07:46:29 +09:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 14:22:43 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-05-17 17:52:20 +02:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-06-24 17:23:08 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-06-13 07:46:29 +09:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-05-03 12:17:13 -04:00
2016-07-01 17:42:55 -04:00
2016-04-27 18:44:32 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:46 -04:00
2016-05-17 09:54:43 -06:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-05-27 15:39:54 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-05-31 11:22:59 -07:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-07-01 17:42:55 -04:00
2016-04-25 15:09:40 -04:00
2016-06-09 13:53:05 -04:00
2016-07-12 17:58:48 +02:00
2016-06-09 13:53:05 -04:00
2016-05-05 21:39:26 -04:00
2016-06-09 13:53:05 -04:00
2016-07-12 17:58:50 +02:00
2016-06-09 13:53:05 -04:00
2016-07-01 17:42:55 -04:00
2015-08-13 07:19:33 -04:00
2016-04-25 15:09:47 -04:00
2016-07-01 17:42:55 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-07-01 17:42:55 -04:00
2016-07-01 17:42:55 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:13 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-05-17 09:54:43 -06:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-07-01 17:42:55 -04:00
2016-06-09 13:53:13 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-05-27 10:23:08 -06:00
2016-01-26 08:06:13 +01:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:13 -04:00
2016-07-01 17:42:55 -04:00
2016-05-25 13:25:18 +09:00
2016-06-24 17:24:33 -04:00
2016-05-24 08:08:35 +02:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-05-17 09:54:43 -06:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:40 -04:00
2016-06-17 09:51:05 -04:00
2016-04-25 15:09:47 -04:00
2016-06-26 20:17:22 +02:00
2016-07-01 17:42:55 -04:00
2016-05-25 13:25:18 +09:00
2016-06-06 13:39:43 -04:00
2016-07-01 17:42:55 -04:00
2016-04-25 15:09:47 -04:00
2016-07-01 17:42:55 -04:00
2016-07-01 17:42:55 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-06-23 18:24:21 +02:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-07-01 17:42:54 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-07-01 17:42:55 -04:00
2016-06-13 07:46:29 +09:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-07-01 17:42:55 -04:00
2016-06-09 13:53:05 -04:00
2016-04-01 09:52:28 +02:00
2016-04-01 09:52:28 +02:00
2016-04-25 15:09:46 -04:00
2016-04-01 09:52:28 +02:00
2016-06-10 13:04:06 +02:00
2016-04-25 15:09:46 -04:00
2016-05-03 21:36:13 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-17 09:51:01 -04:00
2016-06-09 13:53:05 -04:00
2016-06-26 20:17:22 +02:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:46 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-01-19 08:31:21 -05:00
2016-05-31 11:22:59 -07:00
2016-03-15 15:13:10 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-05-31 09:53:57 -07:00
2016-07-01 17:42:55 -04:00
2016-06-09 13:53:13 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-06-06 13:39:20 -04:00
2016-06-12 13:14:57 -04:00
2016-04-25 15:09:46 -04:00
2016-05-05 21:32:18 -04:00
2016-07-01 17:42:57 -04:00
2016-04-25 15:09:47 -04:00
2016-06-24 17:24:33 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:46 -04:00
2016-05-17 17:52:20 +02:00
2016-05-25 13:25:18 +09:00
2016-05-25 13:25:18 +09:00
2016-07-01 17:42:55 -04:00
2016-04-25 15:09:47 -04:00
2016-06-18 10:25:13 +02:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-07-01 17:42:55 -04:00
2016-06-09 13:53:05 -04:00
2016-07-12 17:58:50 +02:00
2016-06-09 13:53:05 -04:00
2016-07-01 17:42:55 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-05-27 10:01:12 -04:00
2016-05-27 10:01:12 -04:00
2016-05-27 10:01:12 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-07-01 17:42:55 -04:00
2016-06-09 13:53:05 -04:00
2016-07-01 17:42:55 -04:00
2016-04-25 15:09:40 -04:00
2016-07-19 19:52:12 +02:00
2016-06-18 10:37:22 +02:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-06-09 13:53:05 -04:00
2016-07-01 17:42:55 -04:00
2016-03-17 10:27:27 +08:00
2016-06-09 13:53:05 -04:00
2016-07-01 17:42:55 -04:00
2016-06-09 13:53:05 -04:00
2016-06-06 11:23:28 +02:00
2016-06-06 11:23:28 +02:00
2016-06-06 11:23:28 +02:00
2016-06-06 11:23:28 +02:00
2016-06-06 11:23:28 +02:00
2016-06-06 11:23:28 +02:00
2016-06-09 13:53:05 -04:00
2016-01-27 15:43:01 +01:00
2016-01-27 15:57:20 +01:00
2016-07-01 17:42:55 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-25 15:09:47 -04:00
2016-04-25 15:09:47 -04:00
2016-07-12 17:58:48 +02:00
2016-07-12 17:58:48 +02:00
2016-06-09 13:53:05 -04:00
2016-06-09 13:53:05 -04:00
2016-04-13 18:29:02 +02:00
2016-02-22 16:21:03 +01:00
2016-02-22 16:21:03 +01:00
2016-02-22 16:21:02 +01:00
2016-02-22 16:21:03 +01:00
2016-04-04 20:28:37 +02:00
2016-06-09 13:53:05 -04:00