Re: [oe] Finding out the IMAGE_BASENAME of the image beeing built

2013-04-01 Thread Takeshi Hamasaki
Hi Ulf, I couldn't find the reason your recipe is stand alone, because it doesn't generate image by itself. Does it? My idea is written under the quote. How is it? Let me go back to your question in first mail. 2013/3/30 Ulf Samuelsson openembed...@emagii.com: Trying create a programming

[oe] Finding out the IMAGE_BASENAME of the image beeing built

2013-03-30 Thread Ulf Samuelsson
Trying create a programming script recipe and need to find out the IMAGE_BASENAME of the bitbake target so I can get the filename of the image ${MACHINE}-${IMAGE_BASENAME}.ubi I.E: if I do $ MACHINE=beagleboard bitbake some-image and some-image_1.0.bb contains IMAGE_BASENAME =

Re: [oe] Finding out the IMAGE_BASENAME of the image beeing built

2013-03-30 Thread Takeshi Hamasaki
Hi Ulf, $ MACHINE=beagleboard bitbake -e some-image shows all variables including $IMAGE_BASENAME without actually building the image. Using grep you can take the value of IMAGE_BASENAME, like as: $ MACHINE=beagleboard bitbake -e some-image | grep ^IMAGE_BASENAME Does it help you? If

Re: [oe] Finding out the IMAGE_BASENAME of the image beeing built

2013-03-30 Thread Paul Eggleton
On Saturday 30 March 2013 13:32:51 Ulf Samuelsson wrote: Trying create a programming script recipe and need to find out the IMAGE_BASENAME of the bitbake target so I can get the filename of the image ${MACHINE}-${IMAGE_BASENAME}.ubi I.E: if I do $ MACHINE=beagleboard bitbake

Re: [oe] Finding out the IMAGE_BASENAME of the image beeing built

2013-03-30 Thread Ulf Samuelsson
On 2013-03-30 14:04, Takeshi Hamasaki wrote: Hi Ulf, $ MACHINE=beagleboard bitbake -e some-image shows all variables including $IMAGE_BASENAME without actually building the image. Using grep you can take the value of IMAGE_BASENAME, like as: Thanks, bitbake is already running to build my

Re: [oe] Finding out the IMAGE_BASENAME of the image beeing built

2013-03-30 Thread Ulf Samuelsson
On 2013-03-30 15:13, Paul Eggleton wrote: On Saturday 30 March 2013 13:32:51 Ulf Samuelsson wrote: Trying create a programming script recipe and need to find out the IMAGE_BASENAME of the bitbake target so I can get the filename of the image ${MACHINE}-${IMAGE_BASENAME}.ubi I.E: if I do $