Re: [Angstrom-devel] Bitbake build failure of Angstrom

2011-07-18 Thread Koen Kooi
Op 18 jul 2011, om 07:16 heeft Joel A Fernandes het volgende geschreven: Hi, I am attempting to manually rebuild the BeagleBoard validation image using bitbake. For this, I used the revision found in /etc/angstrom-version of an image I built with Narcissus. The OE revision I used

Re: [Angstrom-devel] Bitbake build failure of Angstrom

2011-07-18 Thread Joel A Fernandes
Hi Koen, Nice to hear from you. On Mon, Jul 18, 2011 at 2:00 AM, Koen Kooi k...@dominion.thruhere.net wrote: Op 18 jul 2011, om 07:16 heeft Joel A Fernandes het volgende geschreven: Hi, I am attempting to manually rebuild the BeagleBoard validation image using bitbake. For this, I used

[Angstrom-devel] Roger Monk : narcissus: Add gdm autologin

2011-07-18 Thread Angstrom Git Repos
Module: narcissus Branch: master Commit: dc4d99ababccf969b5f09043c5e8d0b70aa1 Author: Roger Monk r-m...@ti.com Date: Mon Jul 18 15:48:32 2011 +0100 narcissus: Add gdm autologin Signed-off-by: Roger Monk r-m...@ti.com Signed-off-by: Koen Kooi k...@dominion.thruhere.net --- index.html |

[Angstrom-devel] [PATCH 1/2] assemble_image: Copy U-boot environment files for flashing NAND (controlled by user button)

2011-07-18 Thread Joel A Fernandes
* Copy a user.txt and uEnv.txt if they exist in /boot in the root fs to the boot partition, When the user button is pressed, U-boot chooses between these 2 files, user.txt is used for flashing while uEnv.txt is for a regular boot Signed-off-by: Joel A Fernandes agnel.j...@gmail.com ---

[Angstrom-devel] [PATCH 2/2] assemble_image: Copy a UBIFS image to the filesystem for SD Card image builds

2011-07-18 Thread Joel A Fernandes
* For SD Card image builds, also make a ubi image and copy it to /boot in the root filesystem This is used by the flashing script to ubiformat the NAND Signed-off-by: Joel A Fernandes agnel.j...@gmail.com --- scripts/assemble-image.sh |6 +- 1 files changed, 5 insertions(+), 1

Re: [Angstrom-devel] [PATCH 1/2] assemble_image: Copy U-boot environment files for flashing NAND (controlled by user button)

2011-07-18 Thread Koen Kooi
Op 18 jul 2011, om 17:50 heeft Joel A Fernandes het volgende geschreven: * Copy a user.txt and uEnv.txt if they exist in /boot in the root fs to the boot partition, When the user button is pressed, U-boot chooses between these 2 files, user.txt is used for flashing while uEnv.txt is for

Re: [Angstrom-devel] [PATCH 2/2] assemble_image: Copy a UBIFS image to the filesystem for SD Card image builds

2011-07-18 Thread Koen Kooi
Op 18 jul 2011, om 17:51 heeft Joel A Fernandes het volgende geschreven: * For SD Card image builds, also make a ubi image and copy it to /boot in the root filesystem This is used by the flashing script to ubiformat the NAND Signed-off-by: Joel A Fernandes agnel.j...@gmail.com ---

[Angstrom-devel] [PATCH v2 1/2] assemble_image: Copy U-boot environment files for flashing NAND (controlled by user button)

2011-07-18 Thread Joel A Fernandes
* Copy a user.txt and uEnv.txt if they exist in /boot in the root fs to the boot partition, When the user button is pressed, U-boot chooses between these 2 files, user.txt is used for flashing while uEnv.txt is for a regular boot Signed-off-by: Joel A Fernandes agnel.j...@gmail.com ---

[Angstrom-devel] [PATCH v3 1/2] assemble_image: Copy U-boot environment files for flashing NAND (controlled by user button)

2011-07-18 Thread Joel A Fernandes
* Copy a user.txt and uEnv.txt if they exist in /boot in the root fs to the boot partition, When the user button is pressed, U-boot chooses between these 2 files, user.txt is used for flashing while uEnv.txt is for a regular boot Signed-off-by: Joel A Fernandes agnel.j...@gmail.com ---

[Angstrom-devel] [PATCH v3 2/2] assemble_image: Copy a UBIFS image to the filesystem for SD Card image builds

2011-07-18 Thread Joel A Fernandes
* For SD Card image builds, also make a ubi image and copy it to /boot in the root filesystem This is used by the flashing script to ubiformat the NAND Signed-off-by: Joel A Fernandes agnel.j...@gmail.com --- Changes since v2: - Fixed spacing in if condition scripts/assemble-image.sh | 11

[Angstrom-devel] [PATCH] narcissus: Add sdimg-ubi selection to imagetype

2011-07-18 Thread Jason Kridner
With a patch to assemble-image.sh[1], this change to the user interface enables a copy of the root file system to be built into a UBIFS image and stored on the SD card for use in flashing systems with the same root file system. It is possible to make this a checkbox that would show up when sdimg

Re: [Angstrom-devel] [PATCH v3 2/2] assemble_image: Copy a UBIFS image to the filesystem for SD Card image builds

2011-07-18 Thread Koen Kooi
Op 18 jul 2011, om 19:54 heeft Joel A Fernandes het volgende geschreven: * For SD Card image builds, also make a ubi image and copy it to /boot in the root filesystem This is used by the flashing script to ubiformat the NAND Signed-off-by: Joel A Fernandes agnel.j...@gmail.com ---

[Angstrom-devel] [PATCH] Set imagesuffix to .tar.gz when imagetype is sdimg-ubi

2011-07-18 Thread Joel A Fernandes
Signed-off-by: Joel A Fernandes agnel.j...@gmail.com --- backend.php |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/backend.php b/backend.php index f35d096..d9c9edb 100644 --- a/backend.php +++ b/backend.php @@ -99,6 +99,9 @@ switch($imagetype) { case sdimg:

Re: [Angstrom-devel] [PATCH v3 2/2] assemble_image: Copy a UBIFS image to the filesystem for SD Card image builds

2011-07-18 Thread Joel A Fernandes
On Mon, Jul 18, 2011 at 1:35 PM, Koen Kooi k...@dominion.thruhere.net wrote: Op 18 jul 2011, om 19:54 heeft Joel A Fernandes het volgende geschreven: * For SD Card image builds, also make a ubi image and copy it to /boot in the root filesystem  This is used by the flashing script to

Re: [Angstrom-devel] [PATCH v3 2/2] assemble_image: Copy a UBIFS image to the filesystem for SD Card image builds

2011-07-18 Thread Koen Kooi
Op 18 jul 2011, om 21:18 heeft Joel A Fernandes het volgende geschreven: On Mon, Jul 18, 2011 at 1:35 PM, Koen Kooi k...@dominion.thruhere.net wrote: Op 18 jul 2011, om 19:54 heeft Joel A Fernandes het volgende geschreven: * For SD Card image builds, also make a ubi image and copy it to

Re: [Angstrom-devel] [PATCH v3 2/2] assemble_image: Copy a UBIFS image to the filesystem for SD Card image builds

2011-07-18 Thread Joel A Fernandes
On Mon, Jul 18, 2011 at 2:19 PM, Koen Kooi k...@dominion.thruhere.net wrote: Op 18 jul 2011, om 21:18 heeft Joel A Fernandes het volgende geschreven: On Mon, Jul 18, 2011 at 1:35 PM, Koen Kooi k...@dominion.thruhere.net wrote: Op 18 jul 2011, om 19:54 heeft Joel A Fernandes het volgende

[Angstrom-devel] [PATCH 2/4] assemble_image: Copy U-boot environment files for flashing NAND (controlled by user button)

2011-07-18 Thread Joel A Fernandes
* Copy a user.txt and uEnv.txt if they exist in /boot in the root fs to the boot partition, When the user button is pressed, U-boot chooses between these 2 files, user.txt is used for flashing while uEnv.txt is for a regular boot Signed-off-by: Joel A Fernandes agnel.j...@gmail.com ---

[Angstrom-devel] [PATCH 1/4] Added sdimg-ubi selection to imagetypes

2011-07-18 Thread Joel A Fernandes
From: Jason Kridner jkrid...@beagleboard.org With a patch to assemble-image.sh[1], this change to the user interface enables a copy of the root file system to be built into a UBIFS image and stored on the SD card for use in flashing systems with the same root file system. It is possible to make

[Angstrom-devel] [PATCH 3/4] assemble_image: Copy a UBIFS image to the filesystem for SD Card image builds

2011-07-18 Thread Joel A Fernandes
* For SD Card image builds, also make a ubi image and copy it to /boot in the root filesystem This is used by the flashing script to ubiformat the NAND Signed-off-by: Joel A Fernandes agnel.j...@gmail.com --- scripts/assemble-image.sh | 11 ++- 1 files changed, 10 insertions(+), 1

[Angstrom-devel] Joel A Fernandes : assemble_image: Copy U-boot environment files for flashing NAND (controlled by user button )

2011-07-18 Thread Angstrom Git Repos
Module: narcissus Branch: master Commit: 9d677727beb9ab6dd1b5ab6abbcd30ce6380cab2 Author: Joel A Fernandes agnel.j...@gmail.com Date: Mon Jul 18 14:27:16 2011 -0500 assemble_image: Copy U-boot environment files for flashing NAND (controlled by user button) * Copy a user.txt and uEnv.txt if

Re: [Angstrom-devel] Joel A Fernandes : assemble_image: Copy a UBIFS image to the filesystem for SD Card image builds

2011-07-18 Thread Joel A Fernandes
On Mon, Jul 18, 2011 at 3:29 PM, Angstrom Git Repos ang-...@xora.vm.bytemark.co.uk wrote: Module: narcissus Branch: master Commit: 912be148348a796f2613ebf97ee11f2a0e96530e Author: Joel A Fernandes agnel.j...@gmail.com Date:   Mon Jul 18 14:27:17 2011 -0500 assemble_image: Copy a UBIFS

[Angstrom-devel] OE Changelog for 2011-07-11 to 2011-07-18

2011-07-18 Thread cliff . brake
Changelog for 2011-07-11 to 2011-07-18. Projects included in this report: bitbake: git://git.openembedded.org/bitbake openembedded-core: git://git.openembedded.org/openembedded-core meta-openembedded: git://git.openembedded.org/meta-openembedded meta-angstrom: