Lifesaver!

2014-12-08 Thread Peter M
Hey You! Wanna have a life like mine? Then you should get involved here quickley! http://landing.optiontime.com/en/getebook/?cid=2B6767B5412CEE84757EDE4B873C6420&zid=Mexos_AffOption&pid=5922&mid=13530792&custom=5881 No more such information? Simply answer NO _

[PATCHv2] ARM: phytec: am335x: Update enviroment comment

2014-12-08 Thread Teresa Gámez
We do not have a root partition in spi flash any more. Adapt comment. Signed-off-by: Teresa Gámez --- v2: Fixed typo .../arm/boards/phytec-phycore-am335x/defaultenv-phycore-am335x/boot/spi | 2 +- .../arm/boards/phytec-phyflex-am335x/defaultenv-phyflex-am335x/boot/spi | 2 +- 2 files changed, 2

[PATCH] doc: usb: add missing new line in codeblock

2014-12-08 Thread Lucas Stach
Fixes an error during doc generation that leads to the code block being missing in the resulting docs. Signed-off-by: Lucas Stach --- Documentation/user/usb.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/user/usb.rst b/Documentation/user/usb.rst index 88be62053629..0ff982b

[PATCH 08/12] lib: add wchar strdup

2014-12-08 Thread Lucas Stach
Signed-off-by: Lucas Stach --- include/wchar.h | 2 ++ lib/wchar.c | 16 2 files changed, 18 insertions(+) diff --git a/include/wchar.h b/include/wchar.h index 80dcd81bf442..702d8e239a7c 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -5,6 +5,8 @@ typedef u16 wchar

[PATCH 01/12] efi: add function to determine type of device path

2014-12-08 Thread Lucas Stach
Thanks to the wonders of UEFI we have to walk down the device path all the way until we arrive at the device we got this path from... Signed-off-by: Lucas Stach --- common/efi-devicepath.c | 15 +++ include/efi.h | 1 + 2 files changed, 16 insertions(+) diff --git a/commo

[PATCH 04/12] efi: add Barebox GUID

2014-12-08 Thread Lucas Stach
A proper GUID is needed to namespace all sorts of things, most prominently persistent variables. Signed-off-by: Lucas Stach --- include/efi.h | 4 1 file changed, 4 insertions(+) diff --git a/include/efi.h b/include/efi.h index 49b8bd44bc1e..4abb5d2e3683 100644 --- a/include/efi.h +++ b/in

[PATCH 05/12] fs: efivars: cosmetic changes

2014-12-08 Thread Lucas Stach
Signed-off-by: Lucas Stach --- fs/efivarfs.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fs/efivarfs.c b/fs/efivarfs.c index 58c637ef19b4..4e13c8365e0e 100644 --- a/fs/efivarfs.c +++ b/fs/efivarfs.c @@ -1,7 +1,7 @@ /* - * ramfs.c - a malloc based filesystem + * ef

[PATCH 03/12] efi: move exit to EFI into own command

2014-12-08 Thread Lucas Stach
Adds a command to drop back into the calling EFI process. Signed-off-by: Lucas Stach --- arch/efi/efi/efi.c | 16 1 file changed, 16 insertions(+) diff --git a/arch/efi/efi/efi.c b/arch/efi/efi/efi.c index bdb992fb9f15..7b954695f9e8 100644 --- a/arch/efi/efi/efi.c +++ b/arch/ef

[PATCH 02/12] efi: add proper reset hook

2014-12-08 Thread Lucas Stach
This allows to actually reset the system from barebox instead of dropping back into the EFI firmware. Signed-off-by: Lucas Stach --- arch/efi/efi/efi.c | 2 +- include/efi.h | 11 +++ 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/arch/efi/efi/efi.c b/arch/efi/efi/e

[PATCH 12/12] efi: mount efivarfs by default if enabled

2014-12-08 Thread Lucas Stach
Signed-off-by: Lucas Stach --- common/startup.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/common/startup.c b/common/startup.c index 01718146ff69..0d62f16f32f6 100644 --- a/common/startup.c +++ b/common/startup.c @@ -50,6 +50,12 @@ static int mount_root(void) mount("none",

[PATCH 09/12] fs: efivar: preserve more info in inode

2014-12-08 Thread Lucas Stach
Preserve info needed for easy manipulation of variables. Signed-off-by: Lucas Stach --- fs/efivarfs.c | 15 ++- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/fs/efivarfs.c b/fs/efivarfs.c index aa66aa8dd99d..a36020d2d08e 100644 --- a/fs/efivarfs.c +++ b/fs/efivarfs.c

[PATCH 11/12] fs: efivars: implement write support

2014-12-08 Thread Lucas Stach
Implement the standard FS ops for writing/manipulating efivars. Signed-off-by: Lucas Stach --- fs/efivarfs.c | 105 ++ include/efi.h | 3 +- 2 files changed, 107 insertions(+), 1 deletion(-) diff --git a/fs/efivarfs.c b/fs/efivarfs.c ind

[PATCH 06/12] fs: efivar: switch to standard list implementation

2014-12-08 Thread Lucas Stach
Cleans the code a bit and will allow us to implement removing of vars quite a bit easier. Signed-off-by: Lucas Stach --- fs/efivarfs.c | 34 +- 1 file changed, 13 insertions(+), 21 deletions(-) diff --git a/fs/efivarfs.c b/fs/efivarfs.c index 4e13c8365e0e..fda5d7

[PATCH 07/12] fs: efivar: move variable discovery into probe

2014-12-08 Thread Lucas Stach
So we can manipulate things easier. Signed-off-by: Lucas Stach --- fs/efivarfs.c | 109 +++--- 1 file changed, 58 insertions(+), 51 deletions(-) diff --git a/fs/efivarfs.c b/fs/efivarfs.c index fda5d7449e4f..aa66aa8dd99d 100644 --- a/fs/efivar

[PATCH 10/12] fs: efivars: don't store attributes in file

2014-12-08 Thread Lucas Stach
We don't have a use-case yet where we need to manipulate the attributes of a variable and it confuses "normal" users of the variables. Signed-off-by: Lucas Stach --- fs/efivarfs.c | 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/fs/efivarfs.c b/fs/efivarfs.c inde

[PATCH 2/3] ARM: dts: am335x-phytec-phycore-som: Increase kernel partition on SPI NOR

2014-12-08 Thread Teresa Gámez
Increase kernel partition to end of SPI NOR. Signed-off-by: Teresa Gámez --- arch/arm/dts/am335x-phytec-phycore-som.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/dts/am335x-phytec-phycore-som.dtsi b/arch/arm/dts/am335x-phytec-phycore-som.dtsi index f1bcb8b..9

[PATCH 1/3] ARM: dts: am335x-phytec-phyflex: Increase kernel partition on SPI NOR

2014-12-08 Thread Teresa Gámez
Increase kernel partition to end of SPI NOR. Signed-off-by: Teresa Gámez --- arch/arm/dts/am335x-phytec-phyflex.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/dts/am335x-phytec-phyflex.dts b/arch/arm/dts/am335x-phytec-phyflex.dts index c4481f5..0de7e87 100644 -

[PATCH 3/3] ARM: phytec: am335x: Update enviroment comment

2014-12-08 Thread Teresa Gámez
We do not have a root partition in spi flash any more. Adapt comment. Signed-off-by: Teresa Gámez --- .../arm/boards/phytec-phycore-am335x/defaultenv-phycore-am335x/boot/spi | 2 +- .../arm/boards/phytec-phyflex-am335x/defaultenv-phyflex-am335x/boot/spi | 2 +- 2 files changed, 2 insertions(+),

v2014.12.0

2014-12-08 Thread Sascha Hauer
Hi All, We have a December Release. Not much new stuff has happened, but quite many fixes went into this release, which I think is good. For new stuff we have a rtl8169 PCI network driver and XZ image compression support. Top developer for this release is not me but Lucas. Congratulations :) Sasc