* Re: [PATCH 1/5] ti-tisdk-makefile: Update U-boot makefile
2014-02-06 15:34 [PATCH 1/5] ti-tisdk-makefile: Update U-boot makefile Franklin S. Cooper Jr
@ 2014-02-06 14:28 ` Maupin, Chase
2014-02-06 14:52 ` Cooper Jr., Franklin
2014-02-06 15:34 ` [PATCH 2/5] wl18xx-firmware: Add Makefile as a patch Franklin S. Cooper Jr
` (3 subsequent siblings)
4 siblings, 1 reply; 12+ messages in thread
From: Maupin, Chase @ 2014-02-06 14:28 UTC (permalink / raw)
To: Cooper Jr., Franklin, meta-arago@arago-project.org
>-----Original Message-----
>From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>bounces@arago-project.org] On Behalf Of Cooper Jr., Franklin
>Sent: Thursday, February 06, 2014 10:35 AM
>To: meta-arago@arago-project.org
>Cc: Cooper Jr., Franklin
>Subject: [meta-arago] [PATCH 1/5] ti-tisdk-makefile: Update U-boot
>makefile
>
>* Add echo statements to make U-boot make,clean,install steps
>stand out.
>* Remove installing of U-boot files since installing them into the
>file system
> servers no purpose.
I would argue that this doesn't hurt anything and having them on the file system allows for people to update the bootloader from Linux itself.
>
>Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
>---
> .../ti-tisdk-makefile/Makefile_u-boot-spl | 14
>++++++++++----
> .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb | 2 +-
> 2 files changed, 11 insertions(+), 5 deletions(-)
>
>diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
>tisdk-makefile/Makefile_u-boot-spl b/meta-arago-distro/recipes-
>tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_u-boot-spl
>index 9ce6429..d2de7a9 100644
>--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
>makefile/Makefile_u-boot-spl
>+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
>makefile/Makefile_u-boot-spl
>@@ -4,14 +4,20 @@ u-boot-spl_clean: u-boot_clean
> u-boot-spl_install: u-boot_install
>
> u-boot:
>+ @echo ===================================
>+ @echo Building U-boot
>+ @echo ===================================
> $(MAKE) -j $(MAKE_JOBS) -C $(TI_SDK_PATH)/board-support/u-
>boot-* CROSS_COMPILE=$(CROSS_COMPILE) $(UBOOT_MACHINE)
> $(MAKE) -j $(MAKE_JOBS) -C $(TI_SDK_PATH)/board-support/u-
>boot-* CROSS_COMPILE=$(CROSS_COMPILE)
>
> u-boot_clean:
>+ @echo ===================================
>+ @echo Cleaining U-boot
>+ @echo ===================================
> $(MAKE) -C $(TI_SDK_PATH)/board-support/u-boot-*
>CROSS_COMPILE=$(CROSS_COMPILE) clean
>
> u-boot_install:
>- install -d $(DESTDIR)/boot
>- install $(TI_SDK_PATH)/board-support/u-boot-*/u-boot.img
>$(DESTDIR)/boot
>- install $(TI_SDK_PATH)/board-support/u-boot-*/MLO
>$(DESTDIR)/boot
>- install $(TI_SDK_PATH)/board-support/u-boot-*/u-boot.map
>$(DESTDIR)/boot
>+ @echo ===================================
>+ @echo Installing U-boot
>+ @echo ===================================
>+ @echo "Nothing to do"
>diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
>tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-
>makefile/ti-tisdk-makefile_1.0.bb
>index 30c2901..374fa81 100644
>--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
>makefile_1.0.bb
>+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
>makefile_1.0.bb
>@@ -34,7 +34,7 @@ SRC_URI = "\
> file://Makefile_dual-camera-demo \
> "
>
>-PR = "r25"
>+PR = "r26"
>
> MAKEFILES_COMMON = "linux \
> matrix-gui \
>--
>1.7.0.4
>
>_______________________________________________
>meta-arago mailing list
>meta-arago@arago-project.org
>http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH 1/5] ti-tisdk-makefile: Update U-boot makefile
2014-02-06 14:28 ` Maupin, Chase
@ 2014-02-06 14:52 ` Cooper Jr., Franklin
2014-02-06 14:59 ` Maupin, Chase
0 siblings, 1 reply; 12+ messages in thread
From: Cooper Jr., Franklin @ 2014-02-06 14:52 UTC (permalink / raw)
To: Maupin, Chase, meta-arago@arago-project.org
> -----Original Message-----
> From: Maupin, Chase
> Sent: Thursday, February 06, 2014 8:28 AM
> To: Cooper Jr., Franklin; meta-arago@arago-project.org
> Subject: RE: [meta-arago] [PATCH 1/5] ti-tisdk-makefile: Update U-boot
> makefile
>
> >-----Original Message-----
> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >bounces@arago-project.org] On Behalf Of Cooper Jr., Franklin
> >Sent: Thursday, February 06, 2014 10:35 AM
> >To: meta-arago@arago-project.org
> >Cc: Cooper Jr., Franklin
> >Subject: [meta-arago] [PATCH 1/5] ti-tisdk-makefile: Update U-boot
> >makefile
> >
> >* Add echo statements to make U-boot make,clean,install steps stand
> >out.
> >* Remove installing of U-boot files since installing them into the file
> >system
> > servers no purpose.
>
> I would argue that this doesn't hurt anything and having them on the file system
> allows for people to update the bootloader from Linux itself.
[Franklin] I can see your point but I was worried about the confusion it would cause especially since the all the kernel files are now in the /boot directory. Is there a point in copying u-boot.map also?
>
> >
> >Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> >---
> > .../ti-tisdk-makefile/Makefile_u-boot-spl | 14
> >++++++++++----
> > .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb | 2 +-
> > 2 files changed, 11 insertions(+), 5 deletions(-)
> >
> >diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
> >tisdk-makefile/Makefile_u-boot-spl b/meta-arago-distro/recipes-
> >tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_u-boot-spl
> >index 9ce6429..d2de7a9 100644
> >--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> >makefile/Makefile_u-boot-spl
> >+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> >makefile/Makefile_u-boot-spl
> >@@ -4,14 +4,20 @@ u-boot-spl_clean: u-boot_clean
> > u-boot-spl_install: u-boot_install
> >
> > u-boot:
> >+ @echo ===================================
> >+ @echo Building U-boot
> >+ @echo ===================================
> > $(MAKE) -j $(MAKE_JOBS) -C $(TI_SDK_PATH)/board-support/u-
> >boot-* CROSS_COMPILE=$(CROSS_COMPILE) $(UBOOT_MACHINE)
> > $(MAKE) -j $(MAKE_JOBS) -C $(TI_SDK_PATH)/board-support/u-
> >boot-* CROSS_COMPILE=$(CROSS_COMPILE)
> >
> > u-boot_clean:
> >+ @echo ===================================
> >+ @echo Cleaining U-boot
> >+ @echo ===================================
> > $(MAKE) -C $(TI_SDK_PATH)/board-support/u-boot-*
> >CROSS_COMPILE=$(CROSS_COMPILE) clean
> >
> > u-boot_install:
> >- install -d $(DESTDIR)/boot
> >- install $(TI_SDK_PATH)/board-support/u-boot-*/u-boot.img
> >$(DESTDIR)/boot
> >- install $(TI_SDK_PATH)/board-support/u-boot-*/MLO
> >$(DESTDIR)/boot
> >- install $(TI_SDK_PATH)/board-support/u-boot-*/u-boot.map
> >$(DESTDIR)/boot
> >+ @echo ===================================
> >+ @echo Installing U-boot
> >+ @echo ===================================
> >+ @echo "Nothing to do"
> >diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
> >tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-
> >makefile/ti-tisdk-makefile_1.0.bb
> >index 30c2901..374fa81 100644
> >--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> >makefile_1.0.bb
> >+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-
> >makefile_1.0.bb
> >@@ -34,7 +34,7 @@ SRC_URI = "\
> > file://Makefile_dual-camera-demo \ "
> >
> >-PR = "r25"
> >+PR = "r26"
> >
> > MAKEFILES_COMMON = "linux \
> > matrix-gui \
> >--
> >1.7.0.4
> >
> >_______________________________________________
> >meta-arago mailing list
> >meta-arago@arago-project.org
> >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 1/5] ti-tisdk-makefile: Update U-boot makefile
2014-02-06 14:52 ` Cooper Jr., Franklin
@ 2014-02-06 14:59 ` Maupin, Chase
2014-02-06 15:25 ` Denys Dmytriyenko
0 siblings, 1 reply; 12+ messages in thread
From: Maupin, Chase @ 2014-02-06 14:59 UTC (permalink / raw)
To: Cooper Jr., Franklin, meta-arago@arago-project.org
>-----Original Message-----
>From: Cooper Jr., Franklin
>Sent: Thursday, February 06, 2014 9:53 AM
>To: Maupin, Chase; meta-arago@arago-project.org
>Subject: RE: [meta-arago] [PATCH 1/5] ti-tisdk-makefile: Update U-
>boot makefile
>
>
>
>> -----Original Message-----
>> From: Maupin, Chase
>> Sent: Thursday, February 06, 2014 8:28 AM
>> To: Cooper Jr., Franklin; meta-arago@arago-project.org
>> Subject: RE: [meta-arago] [PATCH 1/5] ti-tisdk-makefile: Update
>U-boot
>> makefile
>>
>> >-----Original Message-----
>> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>> >bounces@arago-project.org] On Behalf Of Cooper Jr., Franklin
>> >Sent: Thursday, February 06, 2014 10:35 AM
>> >To: meta-arago@arago-project.org
>> >Cc: Cooper Jr., Franklin
>> >Subject: [meta-arago] [PATCH 1/5] ti-tisdk-makefile: Update U-
>boot
>> >makefile
>> >
>> >* Add echo statements to make U-boot make,clean,install steps
>stand
>> >out.
>> >* Remove installing of U-boot files since installing them into
>the file
>> >system
>> > servers no purpose.
>>
>> I would argue that this doesn't hurt anything and having them on
>the file system
>> allows for people to update the bootloader from Linux itself.
>[Franklin] I can see your point but I was worried about the
>confusion it would cause especially since the all the kernel files
>are now in the /boot directory. Is there a point in copying u-
>boot.map also?
Not sure about that one.
>>
>> >
>> >Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
>> >---
>> > .../ti-tisdk-makefile/Makefile_u-boot-spl | 14
>> >++++++++++----
>> > .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb | 2 +-
>> > 2 files changed, 11 insertions(+), 5 deletions(-)
>> >
>> >diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-
>makefile/ti-
>> >tisdk-makefile/Makefile_u-boot-spl b/meta-arago-distro/recipes-
>> >tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_u-boot-spl
>> >index 9ce6429..d2de7a9 100644
>> >--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
>tisdk-
>> >makefile/Makefile_u-boot-spl
>> >+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
>tisdk-
>> >makefile/Makefile_u-boot-spl
>> >@@ -4,14 +4,20 @@ u-boot-spl_clean: u-boot_clean
>> > u-boot-spl_install: u-boot_install
>> >
>> > u-boot:
>> >+ @echo ===================================
>> >+ @echo Building U-boot
>> >+ @echo ===================================
>> > $(MAKE) -j $(MAKE_JOBS) -C $(TI_SDK_PATH)/board-support/u-
>> >boot-* CROSS_COMPILE=$(CROSS_COMPILE) $(UBOOT_MACHINE)
>> > $(MAKE) -j $(MAKE_JOBS) -C $(TI_SDK_PATH)/board-support/u-
>> >boot-* CROSS_COMPILE=$(CROSS_COMPILE)
>> >
>> > u-boot_clean:
>> >+ @echo ===================================
>> >+ @echo Cleaining U-boot
>> >+ @echo ===================================
>> > $(MAKE) -C $(TI_SDK_PATH)/board-support/u-boot-*
>> >CROSS_COMPILE=$(CROSS_COMPILE) clean
>> >
>> > u-boot_install:
>> >- install -d $(DESTDIR)/boot
>> >- install $(TI_SDK_PATH)/board-support/u-boot-*/u-boot.img
>> >$(DESTDIR)/boot
>> >- install $(TI_SDK_PATH)/board-support/u-boot-*/MLO
>> >$(DESTDIR)/boot
>> >- install $(TI_SDK_PATH)/board-support/u-boot-*/u-boot.map
>> >$(DESTDIR)/boot
>> >+ @echo ===================================
>> >+ @echo Installing U-boot
>> >+ @echo ===================================
>> >+ @echo "Nothing to do"
>> >diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-
>makefile/ti-
>> >tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-
>tisdk-
>> >makefile/ti-tisdk-makefile_1.0.bb
>> >index 30c2901..374fa81 100644
>> >--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
>tisdk-
>> >makefile_1.0.bb
>> >+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
>tisdk-
>> >makefile_1.0.bb
>> >@@ -34,7 +34,7 @@ SRC_URI = "\
>> > file://Makefile_dual-camera-demo \ "
>> >
>> >-PR = "r25"
>> >+PR = "r26"
>> >
>> > MAKEFILES_COMMON = "linux \
>> > matrix-gui \
>> >--
>> >1.7.0.4
>> >
>> >_______________________________________________
>> >meta-arago mailing list
>> >meta-arago@arago-project.org
>> >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 1/5] ti-tisdk-makefile: Update U-boot makefile
2014-02-06 14:59 ` Maupin, Chase
@ 2014-02-06 15:25 ` Denys Dmytriyenko
2014-02-06 15:52 ` Cooper Jr., Franklin
0 siblings, 1 reply; 12+ messages in thread
From: Denys Dmytriyenko @ 2014-02-06 15:25 UTC (permalink / raw)
To: Maupin, Chase; +Cc: meta-arago@arago-project.org, Cooper Jr., Franklin
On Thu, Feb 06, 2014 at 02:59:09PM +0000, Maupin, Chase wrote:
> >-----Original Message-----
> >From: Cooper Jr., Franklin
> >Sent: Thursday, February 06, 2014 9:53 AM
> >To: Maupin, Chase; meta-arago@arago-project.org
> >Subject: RE: [meta-arago] [PATCH 1/5] ti-tisdk-makefile: Update U-
> >boot makefile
> >
> >
> >
> >> -----Original Message-----
> >> From: Maupin, Chase
> >> Sent: Thursday, February 06, 2014 8:28 AM
> >> To: Cooper Jr., Franklin; meta-arago@arago-project.org
> >> Subject: RE: [meta-arago] [PATCH 1/5] ti-tisdk-makefile: Update
> >U-boot
> >> makefile
> >>
> >> >-----Original Message-----
> >> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >> >bounces@arago-project.org] On Behalf Of Cooper Jr., Franklin
> >> >Sent: Thursday, February 06, 2014 10:35 AM
> >> >To: meta-arago@arago-project.org
> >> >Cc: Cooper Jr., Franklin
> >> >Subject: [meta-arago] [PATCH 1/5] ti-tisdk-makefile: Update U-
> >boot
> >> >makefile
> >> >
> >> >* Add echo statements to make U-boot make,clean,install steps
> >stand
> >> >out.
> >> >* Remove installing of U-boot files since installing them into
> >the file
> >> >system
> >> > servers no purpose.
> >>
> >> I would argue that this doesn't hurt anything and having them on
> >the file system
> >> allows for people to update the bootloader from Linux itself.
> >[Franklin] I can see your point but I was worried about the
> >confusion it would cause especially since the all the kernel files
> >are now in the /boot directory. Is there a point in copying u-
> >boot.map also?
>
> Not sure about that one.
I would agree with removing u-boot from rootfs - it's not needed, but rather
nice to have, plus it takes up space. I know flash storage is getting cheaper
and we are getting larger partitions, but there were/are/will-be platforms
with limited storage. And it's not that hard to transfer u-boot to Linux for
flashing purposes, instead of having it there all the time. Plus, it will
quickly get stale, as it's safe to assume users would want to flash a more
recent u-boot image later on, not the one we ship...
> >> >Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> >> >---
> >> > .../ti-tisdk-makefile/Makefile_u-boot-spl | 14
> >> >++++++++++----
> >> > .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb | 2 +-
> >> > 2 files changed, 11 insertions(+), 5 deletions(-)
> >> >
> >> >diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-
> >makefile/ti-
> >> >tisdk-makefile/Makefile_u-boot-spl b/meta-arago-distro/recipes-
> >> >tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_u-boot-spl
> >> >index 9ce6429..d2de7a9 100644
> >> >--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
> >tisdk-
> >> >makefile/Makefile_u-boot-spl
> >> >+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
> >tisdk-
> >> >makefile/Makefile_u-boot-spl
> >> >@@ -4,14 +4,20 @@ u-boot-spl_clean: u-boot_clean
> >> > u-boot-spl_install: u-boot_install
> >> >
> >> > u-boot:
> >> >+ @echo ===================================
> >> >+ @echo Building U-boot
> >> >+ @echo ===================================
> >> > $(MAKE) -j $(MAKE_JOBS) -C $(TI_SDK_PATH)/board-support/u-
> >> >boot-* CROSS_COMPILE=$(CROSS_COMPILE) $(UBOOT_MACHINE)
> >> > $(MAKE) -j $(MAKE_JOBS) -C $(TI_SDK_PATH)/board-support/u-
> >> >boot-* CROSS_COMPILE=$(CROSS_COMPILE)
> >> >
> >> > u-boot_clean:
> >> >+ @echo ===================================
> >> >+ @echo Cleaining U-boot
> >> >+ @echo ===================================
> >> > $(MAKE) -C $(TI_SDK_PATH)/board-support/u-boot-*
> >> >CROSS_COMPILE=$(CROSS_COMPILE) clean
> >> >
> >> > u-boot_install:
> >> >- install -d $(DESTDIR)/boot
> >> >- install $(TI_SDK_PATH)/board-support/u-boot-*/u-boot.img
> >> >$(DESTDIR)/boot
> >> >- install $(TI_SDK_PATH)/board-support/u-boot-*/MLO
> >> >$(DESTDIR)/boot
> >> >- install $(TI_SDK_PATH)/board-support/u-boot-*/u-boot.map
> >> >$(DESTDIR)/boot
> >> >+ @echo ===================================
> >> >+ @echo Installing U-boot
> >> >+ @echo ===================================
> >> >+ @echo "Nothing to do"
> >> >diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-
> >makefile/ti-
> >> >tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-
> >tisdk-
> >> >makefile/ti-tisdk-makefile_1.0.bb
> >> >index 30c2901..374fa81 100644
> >> >--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
> >tisdk-
> >> >makefile_1.0.bb
> >> >+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
> >tisdk-
> >> >makefile_1.0.bb
> >> >@@ -34,7 +34,7 @@ SRC_URI = "\
> >> > file://Makefile_dual-camera-demo \ "
> >> >
> >> >-PR = "r25"
> >> >+PR = "r26"
> >> >
> >> > MAKEFILES_COMMON = "linux \
> >> > matrix-gui \
> >> >--
> >> >1.7.0.4
> >> >
> >> >_______________________________________________
> >> >meta-arago mailing list
> >> >meta-arago@arago-project.org
> >> >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 1/5] ti-tisdk-makefile: Update U-boot makefile
2014-02-06 15:25 ` Denys Dmytriyenko
@ 2014-02-06 15:52 ` Cooper Jr., Franklin
0 siblings, 0 replies; 12+ messages in thread
From: Cooper Jr., Franklin @ 2014-02-06 15:52 UTC (permalink / raw)
To: Dmytriyenko, Denys, Maupin, Chase; +Cc: meta-arago@arago-project.org
> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Thursday, February 06, 2014 9:26 AM
> To: Maupin, Chase
> Cc: Cooper Jr., Franklin; meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 1/5] ti-tisdk-makefile: Update U-boot
> makefile
>
> On Thu, Feb 06, 2014 at 02:59:09PM +0000, Maupin, Chase wrote:
> > >-----Original Message-----
> > >From: Cooper Jr., Franklin
> > >Sent: Thursday, February 06, 2014 9:53 AM
> > >To: Maupin, Chase; meta-arago@arago-project.org
> > >Subject: RE: [meta-arago] [PATCH 1/5] ti-tisdk-makefile: Update U-
> > >boot makefile
> > >
> > >
> > >
> > >> -----Original Message-----
> > >> From: Maupin, Chase
> > >> Sent: Thursday, February 06, 2014 8:28 AM
> > >> To: Cooper Jr., Franklin; meta-arago@arago-project.org
> > >> Subject: RE: [meta-arago] [PATCH 1/5] ti-tisdk-makefile: Update
> > >U-boot
> > >> makefile
> > >>
> > >> >-----Original Message-----
> > >> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> > >> >bounces@arago-project.org] On Behalf Of Cooper Jr., Franklin
> > >> >Sent: Thursday, February 06, 2014 10:35 AM
> > >> >To: meta-arago@arago-project.org
> > >> >Cc: Cooper Jr., Franklin
> > >> >Subject: [meta-arago] [PATCH 1/5] ti-tisdk-makefile: Update U-
> > >boot
> > >> >makefile
> > >> >
> > >> >* Add echo statements to make U-boot make,clean,install steps
> > >stand
> > >> >out.
> > >> >* Remove installing of U-boot files since installing them into
> > >the file
> > >> >system
> > >> > servers no purpose.
> > >>
> > >> I would argue that this doesn't hurt anything and having them on
> > >the file system
> > >> allows for people to update the bootloader from Linux itself.
> > >[Franklin] I can see your point but I was worried about the confusion
> > >it would cause especially since the all the kernel files are now in
> > >the /boot directory. Is there a point in copying u- boot.map also?
> >
> > Not sure about that one.
>
> I would agree with removing u-boot from rootfs - it's not needed, but rather
> nice to have, plus it takes up space. I know flash storage is getting cheaper and
> we are getting larger partitions, but there were/are/will-be platforms with
> limited storage. And it's not that hard to transfer u-boot to Linux for flashing
> purposes, instead of having it there all the time. Plus, it will quickly get stale, as
> it's safe to assume users would want to flash a more recent u-boot image later
> on, not the one we ship...
[Franklin] I'll leave this patch as is unless there is further objections.
>
>
> > >> >Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> > >> >---
> > >> > .../ti-tisdk-makefile/Makefile_u-boot-spl | 14
> > >> >++++++++++----
> > >> > .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb | 2 +-
> > >> > 2 files changed, 11 insertions(+), 5 deletions(-)
> > >> >
> > >> >diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-
> > >makefile/ti-
> > >> >tisdk-makefile/Makefile_u-boot-spl b/meta-arago-distro/recipes-
> > >> >tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_u-boot-spl
> > >> >index 9ce6429..d2de7a9 100644
> > >> >--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
> > >tisdk-
> > >> >makefile/Makefile_u-boot-spl
> > >> >+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
> > >tisdk-
> > >> >makefile/Makefile_u-boot-spl
> > >> >@@ -4,14 +4,20 @@ u-boot-spl_clean: u-boot_clean
> > >> > u-boot-spl_install: u-boot_install
> > >> >
> > >> > u-boot:
> > >> >+ @echo ===================================
> > >> >+ @echo Building U-boot
> > >> >+ @echo ===================================
> > >> > $(MAKE) -j $(MAKE_JOBS) -C $(TI_SDK_PATH)/board-support/u-
> > >> >boot-* CROSS_COMPILE=$(CROSS_COMPILE) $(UBOOT_MACHINE)
> > >> > $(MAKE) -j $(MAKE_JOBS) -C $(TI_SDK_PATH)/board-support/u-
> > >> >boot-* CROSS_COMPILE=$(CROSS_COMPILE)
> > >> >
> > >> > u-boot_clean:
> > >> >+ @echo ===================================
> > >> >+ @echo Cleaining U-boot
> > >> >+ @echo ===================================
> > >> > $(MAKE) -C $(TI_SDK_PATH)/board-support/u-boot-*
> > >> >CROSS_COMPILE=$(CROSS_COMPILE) clean
> > >> >
> > >> > u-boot_install:
> > >> >- install -d $(DESTDIR)/boot
> > >> >- install $(TI_SDK_PATH)/board-support/u-boot-*/u-boot.img
> > >> >$(DESTDIR)/boot
> > >> >- install $(TI_SDK_PATH)/board-support/u-boot-*/MLO
> > >> >$(DESTDIR)/boot
> > >> >- install $(TI_SDK_PATH)/board-support/u-boot-*/u-boot.map
> > >> >$(DESTDIR)/boot
> > >> >+ @echo ===================================
> > >> >+ @echo Installing U-boot
> > >> >+ @echo ===================================
> > >> >+ @echo "Nothing to do"
> > >> >diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-
> > >makefile/ti-
> > >> >tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-
> > >tisdk-
> > >> >makefile/ti-tisdk-makefile_1.0.bb
> > >> >index 30c2901..374fa81 100644
> > >> >--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
> > >tisdk-
> > >> >makefile_1.0.bb
> > >> >+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-
> > >tisdk-
> > >> >makefile_1.0.bb
> > >> >@@ -34,7 +34,7 @@ SRC_URI = "\
> > >> > file://Makefile_dual-camera-demo \ "
> > >> >
> > >> >-PR = "r25"
> > >> >+PR = "r26"
> > >> >
> > >> > MAKEFILES_COMMON = "linux \
> > >> > matrix-gui \
> > >> >--
> > >> >1.7.0.4
> > >> >
> > >> >_______________________________________________
> > >> >meta-arago mailing list
> > >> >meta-arago@arago-project.org
> > >> >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 2/5] wl18xx-firmware: Add Makefile as a patch
2014-02-06 15:34 [PATCH 1/5] ti-tisdk-makefile: Update U-boot makefile Franklin S. Cooper Jr
2014-02-06 14:28 ` Maupin, Chase
@ 2014-02-06 15:34 ` Franklin S. Cooper Jr
2014-02-06 15:34 ` [PATCH 3/5] Update recipes to pull in Makefile changes Franklin S. Cooper Jr
` (2 subsequent siblings)
4 siblings, 0 replies; 12+ messages in thread
From: Franklin S. Cooper Jr @ 2014-02-06 15:34 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
* Add the Makefile as a patch so it is incorporated in the sources packaged by
sourceipk.
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../0001-Add-Makefile-for-SDK.patch | 34 ++++++++++++++++++++
.../wl18xx-firmware/wl18xx-firmware/Makefile | 7 ----
.../wl18xx-firmware/wl18xx-firmware_r8.a8.10.bb | 5 +--
3 files changed, 36 insertions(+), 10 deletions(-)
create mode 100644 meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware/0001-Add-Makefile-for-SDK.patch
delete mode 100644 meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware/Makefile
diff --git a/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware/0001-Add-Makefile-for-SDK.patch b/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware/0001-Add-Makefile-for-SDK.patch
new file mode 100644
index 0000000..a7011b0
--- /dev/null
+++ b/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware/0001-Add-Makefile-for-SDK.patch
@@ -0,0 +1,34 @@
+From 5f21057d483ba622a4de7075348548540c82a480 Mon Sep 17 00:00:00 2001
+From: Franklin S. Cooper Jr <fcooper@ti.com>
+Date: Wed, 5 Feb 2014 21:03:08 -0600
+Subject: [PATCH] Add Makefile for SDK
+
+* Add Makefile to sources so it is packaged in the SDK.
+
+Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
+---
+ Makefile | 12 ++++++++++++
+ 1 files changed, 12 insertions(+), 0 deletions(-)
+ create mode 100644 Makefile
+
+diff --git a/Makefile b/Makefile
+new file mode 100644
+index 0000000..62f4783
+--- /dev/null
++++ b/Makefile
+@@ -0,0 +1,12 @@
++# Installs the the ti-connectiviy wlan firmware files into the root file system
++
++install:
++ @if [ ! -d $(DESTDIR) ] ; then \
++ echo "The extracted target filesystem directory doesn't exist."; \
++ echo "Please run setup.sh in the SDK's root directory and then try again."; \
++ exit 1; \
++ fi
++ install -d $(DEST_DIR)/lib/firmware/ti-connectivity
++ cp -RpP * $(DEST_DIR)/lib/firmware/ti-connectivity/
++ rm -f $(DEST_DIR)/lib/firmware/ti-connectivity/Makefile
++
+--
+1.7.0.4
+
diff --git a/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware/Makefile b/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware/Makefile
deleted file mode 100644
index 0bb7ab8..0000000
--- a/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware/Makefile
+++ /dev/null
@@ -1,7 +0,0 @@
-# Installs the the ti-connectiviy wlan firmware files into the root file system
-
-install:
- install -d $(DEST_DIR)/lib/firmware/ti-connectivity
- cp -RpP * $(DEST_DIR)/lib/firmware/ti-connectivity/
- rm -f $(DEST_DIR)/lib/firmware/ti-connectivity/Makefile
-
diff --git a/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware_r8.a8.10.bb b/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware_r8.a8.10.bb
index ba698ff..6d559f6 100644
--- a/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware_r8.a8.10.bb
+++ b/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware_r8.a8.10.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENCE;md5=4977a0fe767ee17765ae63c435a32a9e"
PACKAGE_ARCH = "all"
-PR = "r1+gitr${SRCPV}"
+PR = "r2+gitr${SRCPV}"
PROVIDES += "wl12xx-firmware"
RPROVIDES_${PN} += "wl12xx-firmware"
@@ -14,7 +14,7 @@ RCONFLICTS_${PN} += "wl12xx-firmware"
# Tag: ol_r8.a8.10
SRCREV = "89dc93a5c23fd69ebacd64c936ba5aabf173c29b"
SRC_URI = "git://github.com/TI-OpenLink/wl18xx_fw.git;protocol=git \
- file://Makefile \
+ file://0001-Add-Makefile-for-SDK.patch \
"
S = "${WORKDIR}/git"
@@ -24,7 +24,6 @@ do_compile() {
}
do_install() {
- cp ${WORKDIR}/Makefile ${S}
oe_runmake 'DEST_DIR=${D}' install
}
--
1.7.0.4
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH 3/5] Update recipes to pull in Makefile changes
2014-02-06 15:34 [PATCH 1/5] ti-tisdk-makefile: Update U-boot makefile Franklin S. Cooper Jr
2014-02-06 14:28 ` Maupin, Chase
2014-02-06 15:34 ` [PATCH 2/5] wl18xx-firmware: Add Makefile as a patch Franklin S. Cooper Jr
@ 2014-02-06 15:34 ` Franklin S. Cooper Jr
2014-02-06 15:20 ` Denys Dmytriyenko
2014-02-06 15:34 ` [PATCH 4/5] tisdk-install: Use updated environment variable Franklin S. Cooper Jr
2014-02-06 15:34 ` [PATCH 5/5] ti-tisdk-makefile: Update Makefile stubs Franklin S. Cooper Jr
4 siblings, 1 reply; 12+ messages in thread
From: Franklin S. Cooper Jr @ 2014-02-06 15:34 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
* Update SRCREV to pull in Makefile changes.
* Some makefile changes results in changes to do_install.
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../arm-benchmarks/arm-benchmarks_1.3.bb | 4 +-
.../recipes-core/am-sysinfo/am-sysinfo_git.bb | 4 +-
.../recipes-core/matrix/matrix-gui-browser_2.0.bb | 4 +-
.../recipes-core/matrix/matrix-gui_2.0.bb | 4 +-
.../recipes-core/matrix/refresh-screen_2.0.bb | 4 +-
.../oprofile-example/oprofile-example_git.bb | 4 +-
.../ti-crypto-examples/ti-crypto-examples_git.bb | 4 +-
...file.build-for-when-build-dir-is-not-the-.patch | 35 --------------------
.../recipes-qt/qt-apps/qt-tstat_2.0.bb | 13 ++++---
.../recipes-qt/qt-apps/quick-playground_1.0.bb | 11 ++++--
10 files changed, 29 insertions(+), 58 deletions(-)
delete mode 100644 meta-arago-extras/recipes-qt/qt-apps/qt-tstat/0001-Update-Makefile.build-for-when-build-dir-is-not-the-.patch
diff --git a/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb b/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb
index d46c0ab..952e50b 100644
--- a/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb
+++ b/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb
@@ -4,10 +4,10 @@ LICENSE = "BSD"
LIC_FILES_CHKSUM = "file://COPYING;md5=7aefb5e1cffc7b6a3ef18b803f957922"
SECTION = "system"
-PR = "r6"
+PR = "r7"
BRANCH ?= "master"
-SRCREV = "eba9e69247c105f6d8dbcb56452ad4c4ea2df31e"
+SRCREV = "7f76ec24d3fedb9b2e3331f77c2f790c8b43f5f0"
SRC_URI = "git://gitorious.org/arm_benchmarks/arm_benchmarks.git;protocol=git;branch=${BRANCH}"
diff --git a/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb b/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb
index 5d13ad5..493a80a 100644
--- a/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb
+++ b/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb
@@ -6,10 +6,10 @@ LIC_FILES_CHKSUM = "file://mem_util/mem_util.c;beginline=1;endline=37;md5=8aa8e7
SECTION = "system"
PACKAGE_STRIP = "no"
-PR = "r8"
+PR = "r9"
BRANCH ?= "master"
-SRCREV = "7aa7e7a316d24c06c8e6a4931f7297f209dfd8e1"
+SRCREV = "5df7da69a50d27b7f594db0918c5e6793c3a6237"
SRC_URI = "git://gitorious.org/am_sysinfo/am_sysinfo.git;protocol=git;branch=${BRANCH}"
diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb
index 329b65a..4d41b73 100644
--- a/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb
@@ -11,9 +11,9 @@ RDEPENDS_${PN} += "${QT_RDEPENDS_FONTS}"
DEPENDS += "${QT_DEPENDS_WEBKIT}"
-PR = "r3"
+PR = "r4"
-SRCREV = "db2e6b10e5a14358b6120a4a28de2f9d591bc55c"
+SRCREV = "d962b18b628f0006642491c2250ef01557591e66"
BRANCH ?= "master"
SRC_URI = "git://gitorious.org/matrix-gui-v2/matrix_browser.git;protocol=git;branch=${BRANCH}"
diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb
index fa1f1e0..b96d67c 100644
--- a/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=a886c9ef769b2d8271115d2502512e5d"
SECTION = "multimedia"
-PR = "r14"
+PR = "r15"
INITSCRIPT_NAME = "matrix-gui-2.0"
INITSCRIPT_PARAMS = "defaults 97"
@@ -16,7 +16,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
inherit update-rc.d
BRANCH ?= "master"
-SRCREV = "25311718417147bd87aaa25d758cde9a5bffa0a8"
+SRCREV = "a67a9721134fcbf9017d2dd361079f67b10b0ace"
SRC_URI = "git://gitorious.org/matrix-gui-v2/matrix-gui-v2.git;protocol=git;branch=${BRANCH} \
file://init \
diff --git a/meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb b/meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb
index 68381e7..f409c1e 100644
--- a/meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb
+++ b/meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb
@@ -7,9 +7,9 @@ SECTION = "multimedia"
# Make sure that QT font libraries have been installed
RDEPENDS_${PN} += "qt4-embedded-fonts"
-PR = "r2"
+PR = "r3"
-SRCREV = "23acf023743e864bb30158636840a080e36d45b6"
+SRCREV = "e652edf9403fe9329e1bcd14b79503045a53705c"
BRANCH ?= "master"
SRC_URI = "git://gitorious.org/matrix-gui-v2/refresh-screen.git;protocol=git;branch=${BRANCH}"
diff --git a/meta-arago-extras/recipes-core/oprofile-example/oprofile-example_git.bb b/meta-arago-extras/recipes-core/oprofile-example/oprofile-example_git.bb
index 5799f6c..fa203e0 100644
--- a/meta-arago-extras/recipes-core/oprofile-example/oprofile-example_git.bb
+++ b/meta-arago-extras/recipes-core/oprofile-example/oprofile-example_git.bb
@@ -7,10 +7,10 @@ SECTION = "system"
INHIBIT_PACKAGE_STRIP = "1"
-PR = "r2"
+PR = "r3"
BRANCH ?= "master"
-SRCREV = "3aa2de4bb698c96f8a481c4048e3140503b26082"
+SRCREV = "066ecdab2bf0788eec253bf27fd44f7436f0cd04"
SRC_URI = "git://gitorious.org/oprofile-example/oprofile-example.git;protocol=git;branch=${BRANCH}"
diff --git a/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb b/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb
index 995d60a..485faed 100644
--- a/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb
+++ b/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb
@@ -5,10 +5,10 @@ LIC_FILES_CHKSUM = "file://AES/aes_256.c;beginline=9;endline=35;md5=8edbb4dee965
SECTION = "console"
DEPENDS += "openssl"
-PR = "r5"
+PR = "r6"
BRANCH ?= "master"
-SRCREV = "1c6a493600ce1a830611cc5671639c03cc3ebc01"
+SRCREV = "616ca5b6a0feefc1ba2e876c7ced4407f927ef1b"
SRC_URI = "git://arago-project.org/git/projects/crypto-example-apps.git;protocol=git;branch=${BRANCH}"
diff --git a/meta-arago-extras/recipes-qt/qt-apps/qt-tstat/0001-Update-Makefile.build-for-when-build-dir-is-not-the-.patch b/meta-arago-extras/recipes-qt/qt-apps/qt-tstat/0001-Update-Makefile.build-for-when-build-dir-is-not-the-.patch
deleted file mode 100644
index 3ceb74a..0000000
--- a/meta-arago-extras/recipes-qt/qt-apps/qt-tstat/0001-Update-Makefile.build-for-when-build-dir-is-not-the-.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 00666002c48ebbb21e73eb9fbe90615cef87cc11 Mon Sep 17 00:00:00 2001
-From: Denys Dmytriyenko <denys@ti.com>
-Date: Mon, 14 Oct 2013 18:53:28 -0400
-Subject: [PATCH] Update Makefile.build for when build dir is not the same as
- source dir
-
-Signed-off-by: Denys Dmytriyenko <denys@ti.com>
----
- Makefile.build | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/Makefile.build b/Makefile.build
-index 18892d4..72b8e34 100644
---- a/Makefile.build
-+++ b/Makefile.build
-@@ -2,6 +2,7 @@
-
- ENV_SETUP ?= ../../linux-devkit/environment-setup
- DESTDIR ?=
-+BUILDDIR ?= .
- PLATFORM ?=
- MATRIX_APP_DIR ?= /usr/share/matrix-gui-2.0/apps/
- PLATFORM_DEFINE ?= "Platform_${PLATFORM}"
-@@ -28,7 +29,7 @@ clean : ${SOURCES} qmake
-
- install_common:
- @install -d ${DESTDIR}/usr/bin
-- @install -m 0755 ThermostatDemo ${DESTDIR}/usr/bin/ThermostatDemo
-+ @install -m 0755 ${BUILDDIR}/ThermostatDemo ${DESTDIR}/usr/bin/ThermostatDemo
- @install -d ${DESTDIR}${MATRIX_APP_DIR}/qt_tstat
- @cp -rf matrix-files/* ${DESTDIR}${MATRIX_APP_DIR}/qt_tstat
-
---
-1.8.3.2
-
diff --git a/meta-arago-extras/recipes-qt/qt-apps/qt-tstat_2.0.bb b/meta-arago-extras/recipes-qt/qt-apps/qt-tstat_2.0.bb
index 8035537..6704354 100644
--- a/meta-arago-extras/recipes-qt/qt-apps/qt-tstat_2.0.bb
+++ b/meta-arago-extras/recipes-qt/qt-apps/qt-tstat_2.0.bb
@@ -12,16 +12,15 @@ require recipes-core/matrix/matrix-gui-paths.inc
inherit qt-provider
-PR = "r5"
+PR = "r6"
DEPENDS += "${QT_DEPENDS_SVG} ${QT_DEPENDS_SCRIPT}"
BRANCH ?= "master"
-SRCREV = "27e033a0ac59928cc3acbb45f4d9bc2101fcf024"
+SRCREV = "e6225f9e485675e4390dcc7575810e9f63501692"
SRC_URI = " \
git://gitorious.org/thermostat-demo/thermostat-demo.git;protocol=git \
- file://0001-Update-Makefile.build-for-when-build-dir-is-not-the-.patch \
"
SRC_URI += "${@base_conditional('QT_PROVIDER', 'qt5', 'file://0002-Replace-QtGui-with-QtWidgets-per-Qt5-migration-guide.patch \
@@ -29,9 +28,13 @@ SRC_URI += "${@base_conditional('QT_PROVIDER', 'qt5', 'file://0002-Replace-QtGui
S = "${WORKDIR}/git/"
-# use the make targets already created in the Makefile.build files
+BUILDDIR ?= "."
+
do_install() {
- cd ${S} && make -f Makefile.build DESTDIR=${D} BUILDDIR=${B} install_common
+ install -d ${D}/usr/bin
+ install -m 0755 ${BUILDDIR}/ThermostatDemo ${D}/usr/bin/ThermostatDemo
+ install -d ${D}${MATRIX_APP_DIR}/qt_tstat
+ cp -rf matrix-files/* ${D}${MATRIX_APP_DIR}/qt_tstat
}
PACKAGES += "matrix-gui-thermostat-demo"
diff --git a/meta-arago-extras/recipes-qt/qt-apps/quick-playground_1.0.bb b/meta-arago-extras/recipes-qt/qt-apps/quick-playground_1.0.bb
index a8e8869..5f493d3 100644
--- a/meta-arago-extras/recipes-qt/qt-apps/quick-playground_1.0.bb
+++ b/meta-arago-extras/recipes-qt/qt-apps/quick-playground_1.0.bb
@@ -6,10 +6,10 @@ LIC_FILES_CHKSUM = "file://Licence.txt;md5=7cc88160b55ec5db6c6c5bb8e3238c0b"
require recipes-core/matrix/matrix-gui-paths.inc
-PR = "r0"
+PR = "r1"
BRANCH = "master"
-SRCREV = "49bb5b7e1df2f61fc361b7d83a6ec838ffc5381c"
+SRCREV = "0be45ce805147798c98b2dee65e41de67bfcea5d"
SRC_URI = "git://arago-project.org/git/projects/qt4-demos.git;protocol=git;branch=${BRANCH}"
@@ -17,9 +17,12 @@ S = "${WORKDIR}/git/qml_playground"
inherit qt4e
-# use the make targets already created in the Makefile.build files
do_install() {
- make -f Makefile.build DESTDIR=${D} install_common
+ install -d ${D}/usr/bin
+ install -m 0755 runQMLplay.sh ${D}/usr/bin/
+ install -d ${D}${MATRIX_APP_DIR}/qml_playground
+ cp -r apps/qml_playground/* ${D}${MATRIX_APP_DIR}/qml_playground
+ install -m 0755 qtquickplayground ${D}${MATRIX_APP_DIR}/qml_playground/
}
PACKAGES += "matrix-gui-apps-quick-playground"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH 3/5] Update recipes to pull in Makefile changes
2014-02-06 15:34 ` [PATCH 3/5] Update recipes to pull in Makefile changes Franklin S. Cooper Jr
@ 2014-02-06 15:20 ` Denys Dmytriyenko
2014-02-06 15:29 ` Cooper Jr., Franklin
0 siblings, 1 reply; 12+ messages in thread
From: Denys Dmytriyenko @ 2014-02-06 15:20 UTC (permalink / raw)
To: Franklin S. Cooper Jr; +Cc: meta-arago
On Thu, Feb 06, 2014 at 09:34:45AM -0600, Franklin S. Cooper Jr wrote:
> * Update SRCREV to pull in Makefile changes.
> * Some makefile changes results in changes to do_install.
Any details on what kind of Makefile changes happened across the board?
> Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> ---
> .../arm-benchmarks/arm-benchmarks_1.3.bb | 4 +-
> .../recipes-core/am-sysinfo/am-sysinfo_git.bb | 4 +-
> .../recipes-core/matrix/matrix-gui-browser_2.0.bb | 4 +-
> .../recipes-core/matrix/matrix-gui_2.0.bb | 4 +-
> .../recipes-core/matrix/refresh-screen_2.0.bb | 4 +-
> .../oprofile-example/oprofile-example_git.bb | 4 +-
> .../ti-crypto-examples/ti-crypto-examples_git.bb | 4 +-
> ...file.build-for-when-build-dir-is-not-the-.patch | 35 --------------------
> .../recipes-qt/qt-apps/qt-tstat_2.0.bb | 13 ++++---
> .../recipes-qt/qt-apps/quick-playground_1.0.bb | 11 ++++--
> 10 files changed, 29 insertions(+), 58 deletions(-)
> delete mode 100644 meta-arago-extras/recipes-qt/qt-apps/qt-tstat/0001-Update-Makefile.build-for-when-build-dir-is-not-the-.patch
>
> diff --git a/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb b/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb
> index d46c0ab..952e50b 100644
> --- a/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb
> +++ b/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb
> @@ -4,10 +4,10 @@ LICENSE = "BSD"
> LIC_FILES_CHKSUM = "file://COPYING;md5=7aefb5e1cffc7b6a3ef18b803f957922"
> SECTION = "system"
>
> -PR = "r6"
> +PR = "r7"
>
> BRANCH ?= "master"
> -SRCREV = "eba9e69247c105f6d8dbcb56452ad4c4ea2df31e"
> +SRCREV = "7f76ec24d3fedb9b2e3331f77c2f790c8b43f5f0"
>
> SRC_URI = "git://gitorious.org/arm_benchmarks/arm_benchmarks.git;protocol=git;branch=${BRANCH}"
>
> diff --git a/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb b/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb
> index 5d13ad5..493a80a 100644
> --- a/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb
> +++ b/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb
> @@ -6,10 +6,10 @@ LIC_FILES_CHKSUM = "file://mem_util/mem_util.c;beginline=1;endline=37;md5=8aa8e7
> SECTION = "system"
>
> PACKAGE_STRIP = "no"
> -PR = "r8"
> +PR = "r9"
>
> BRANCH ?= "master"
> -SRCREV = "7aa7e7a316d24c06c8e6a4931f7297f209dfd8e1"
> +SRCREV = "5df7da69a50d27b7f594db0918c5e6793c3a6237"
>
> SRC_URI = "git://gitorious.org/am_sysinfo/am_sysinfo.git;protocol=git;branch=${BRANCH}"
>
> diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb
> index 329b65a..4d41b73 100644
> --- a/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb
> +++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb
> @@ -11,9 +11,9 @@ RDEPENDS_${PN} += "${QT_RDEPENDS_FONTS}"
>
> DEPENDS += "${QT_DEPENDS_WEBKIT}"
>
> -PR = "r3"
> +PR = "r4"
>
> -SRCREV = "db2e6b10e5a14358b6120a4a28de2f9d591bc55c"
> +SRCREV = "d962b18b628f0006642491c2250ef01557591e66"
> BRANCH ?= "master"
>
> SRC_URI = "git://gitorious.org/matrix-gui-v2/matrix_browser.git;protocol=git;branch=${BRANCH}"
> diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb
> index fa1f1e0..b96d67c 100644
> --- a/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb
> +++ b/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb
> @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=a886c9ef769b2d8271115d2502512e5d"
>
> SECTION = "multimedia"
>
> -PR = "r14"
> +PR = "r15"
>
> INITSCRIPT_NAME = "matrix-gui-2.0"
> INITSCRIPT_PARAMS = "defaults 97"
> @@ -16,7 +16,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
> inherit update-rc.d
>
> BRANCH ?= "master"
> -SRCREV = "25311718417147bd87aaa25d758cde9a5bffa0a8"
> +SRCREV = "a67a9721134fcbf9017d2dd361079f67b10b0ace"
>
> SRC_URI = "git://gitorious.org/matrix-gui-v2/matrix-gui-v2.git;protocol=git;branch=${BRANCH} \
> file://init \
> diff --git a/meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb b/meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb
> index 68381e7..f409c1e 100644
> --- a/meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb
> +++ b/meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb
> @@ -7,9 +7,9 @@ SECTION = "multimedia"
> # Make sure that QT font libraries have been installed
> RDEPENDS_${PN} += "qt4-embedded-fonts"
>
> -PR = "r2"
> +PR = "r3"
>
> -SRCREV = "23acf023743e864bb30158636840a080e36d45b6"
> +SRCREV = "e652edf9403fe9329e1bcd14b79503045a53705c"
> BRANCH ?= "master"
>
> SRC_URI = "git://gitorious.org/matrix-gui-v2/refresh-screen.git;protocol=git;branch=${BRANCH}"
> diff --git a/meta-arago-extras/recipes-core/oprofile-example/oprofile-example_git.bb b/meta-arago-extras/recipes-core/oprofile-example/oprofile-example_git.bb
> index 5799f6c..fa203e0 100644
> --- a/meta-arago-extras/recipes-core/oprofile-example/oprofile-example_git.bb
> +++ b/meta-arago-extras/recipes-core/oprofile-example/oprofile-example_git.bb
> @@ -7,10 +7,10 @@ SECTION = "system"
>
> INHIBIT_PACKAGE_STRIP = "1"
>
> -PR = "r2"
> +PR = "r3"
>
> BRANCH ?= "master"
> -SRCREV = "3aa2de4bb698c96f8a481c4048e3140503b26082"
> +SRCREV = "066ecdab2bf0788eec253bf27fd44f7436f0cd04"
>
> SRC_URI = "git://gitorious.org/oprofile-example/oprofile-example.git;protocol=git;branch=${BRANCH}"
>
> diff --git a/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb b/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb
> index 995d60a..485faed 100644
> --- a/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb
> +++ b/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb
> @@ -5,10 +5,10 @@ LIC_FILES_CHKSUM = "file://AES/aes_256.c;beginline=9;endline=35;md5=8edbb4dee965
> SECTION = "console"
> DEPENDS += "openssl"
>
> -PR = "r5"
> +PR = "r6"
>
> BRANCH ?= "master"
> -SRCREV = "1c6a493600ce1a830611cc5671639c03cc3ebc01"
> +SRCREV = "616ca5b6a0feefc1ba2e876c7ced4407f927ef1b"
>
> SRC_URI = "git://arago-project.org/git/projects/crypto-example-apps.git;protocol=git;branch=${BRANCH}"
>
> diff --git a/meta-arago-extras/recipes-qt/qt-apps/qt-tstat/0001-Update-Makefile.build-for-when-build-dir-is-not-the-.patch b/meta-arago-extras/recipes-qt/qt-apps/qt-tstat/0001-Update-Makefile.build-for-when-build-dir-is-not-the-.patch
> deleted file mode 100644
> index 3ceb74a..0000000
> --- a/meta-arago-extras/recipes-qt/qt-apps/qt-tstat/0001-Update-Makefile.build-for-when-build-dir-is-not-the-.patch
> +++ /dev/null
> @@ -1,35 +0,0 @@
> -From 00666002c48ebbb21e73eb9fbe90615cef87cc11 Mon Sep 17 00:00:00 2001
> -From: Denys Dmytriyenko <denys@ti.com>
> -Date: Mon, 14 Oct 2013 18:53:28 -0400
> -Subject: [PATCH] Update Makefile.build for when build dir is not the same as
> - source dir
> -
> -Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> ----
> - Makefile.build | 3 ++-
> - 1 file changed, 2 insertions(+), 1 deletion(-)
> -
> -diff --git a/Makefile.build b/Makefile.build
> -index 18892d4..72b8e34 100644
> ---- a/Makefile.build
> -+++ b/Makefile.build
> -@@ -2,6 +2,7 @@
> -
> - ENV_SETUP ?= ../../linux-devkit/environment-setup
> - DESTDIR ?=
> -+BUILDDIR ?= .
> - PLATFORM ?=
> - MATRIX_APP_DIR ?= /usr/share/matrix-gui-2.0/apps/
> - PLATFORM_DEFINE ?= "Platform_${PLATFORM}"
> -@@ -28,7 +29,7 @@ clean : ${SOURCES} qmake
> -
> - install_common:
> - @install -d ${DESTDIR}/usr/bin
> -- @install -m 0755 ThermostatDemo ${DESTDIR}/usr/bin/ThermostatDemo
> -+ @install -m 0755 ${BUILDDIR}/ThermostatDemo ${DESTDIR}/usr/bin/ThermostatDemo
> - @install -d ${DESTDIR}${MATRIX_APP_DIR}/qt_tstat
> - @cp -rf matrix-files/* ${DESTDIR}${MATRIX_APP_DIR}/qt_tstat
> -
> ---
> -1.8.3.2
> -
> diff --git a/meta-arago-extras/recipes-qt/qt-apps/qt-tstat_2.0.bb b/meta-arago-extras/recipes-qt/qt-apps/qt-tstat_2.0.bb
> index 8035537..6704354 100644
> --- a/meta-arago-extras/recipes-qt/qt-apps/qt-tstat_2.0.bb
> +++ b/meta-arago-extras/recipes-qt/qt-apps/qt-tstat_2.0.bb
> @@ -12,16 +12,15 @@ require recipes-core/matrix/matrix-gui-paths.inc
>
> inherit qt-provider
>
> -PR = "r5"
> +PR = "r6"
>
> DEPENDS += "${QT_DEPENDS_SVG} ${QT_DEPENDS_SCRIPT}"
>
> BRANCH ?= "master"
> -SRCREV = "27e033a0ac59928cc3acbb45f4d9bc2101fcf024"
> +SRCREV = "e6225f9e485675e4390dcc7575810e9f63501692"
>
> SRC_URI = " \
> git://gitorious.org/thermostat-demo/thermostat-demo.git;protocol=git \
> - file://0001-Update-Makefile.build-for-when-build-dir-is-not-the-.patch \
> "
>
> SRC_URI += "${@base_conditional('QT_PROVIDER', 'qt5', 'file://0002-Replace-QtGui-with-QtWidgets-per-Qt5-migration-guide.patch \
> @@ -29,9 +28,13 @@ SRC_URI += "${@base_conditional('QT_PROVIDER', 'qt5', 'file://0002-Replace-QtGui
>
> S = "${WORKDIR}/git/"
>
> -# use the make targets already created in the Makefile.build files
> +BUILDDIR ?= "."
> +
> do_install() {
> - cd ${S} && make -f Makefile.build DESTDIR=${D} BUILDDIR=${B} install_common
> + install -d ${D}/usr/bin
> + install -m 0755 ${BUILDDIR}/ThermostatDemo ${D}/usr/bin/ThermostatDemo
> + install -d ${D}${MATRIX_APP_DIR}/qt_tstat
> + cp -rf matrix-files/* ${D}${MATRIX_APP_DIR}/qt_tstat
> }
>
> PACKAGES += "matrix-gui-thermostat-demo"
> diff --git a/meta-arago-extras/recipes-qt/qt-apps/quick-playground_1.0.bb b/meta-arago-extras/recipes-qt/qt-apps/quick-playground_1.0.bb
> index a8e8869..5f493d3 100644
> --- a/meta-arago-extras/recipes-qt/qt-apps/quick-playground_1.0.bb
> +++ b/meta-arago-extras/recipes-qt/qt-apps/quick-playground_1.0.bb
> @@ -6,10 +6,10 @@ LIC_FILES_CHKSUM = "file://Licence.txt;md5=7cc88160b55ec5db6c6c5bb8e3238c0b"
>
> require recipes-core/matrix/matrix-gui-paths.inc
>
> -PR = "r0"
> +PR = "r1"
>
> BRANCH = "master"
> -SRCREV = "49bb5b7e1df2f61fc361b7d83a6ec838ffc5381c"
> +SRCREV = "0be45ce805147798c98b2dee65e41de67bfcea5d"
>
> SRC_URI = "git://arago-project.org/git/projects/qt4-demos.git;protocol=git;branch=${BRANCH}"
>
> @@ -17,9 +17,12 @@ S = "${WORKDIR}/git/qml_playground"
>
> inherit qt4e
>
> -# use the make targets already created in the Makefile.build files
> do_install() {
> - make -f Makefile.build DESTDIR=${D} install_common
> + install -d ${D}/usr/bin
> + install -m 0755 runQMLplay.sh ${D}/usr/bin/
> + install -d ${D}${MATRIX_APP_DIR}/qml_playground
> + cp -r apps/qml_playground/* ${D}${MATRIX_APP_DIR}/qml_playground
> + install -m 0755 qtquickplayground ${D}${MATRIX_APP_DIR}/qml_playground/
> }
>
> PACKAGES += "matrix-gui-apps-quick-playground"
> --
> 1.7.0.4
>
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH 3/5] Update recipes to pull in Makefile changes
2014-02-06 15:20 ` Denys Dmytriyenko
@ 2014-02-06 15:29 ` Cooper Jr., Franklin
0 siblings, 0 replies; 12+ messages in thread
From: Cooper Jr., Franklin @ 2014-02-06 15:29 UTC (permalink / raw)
To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org
> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Thursday, February 06, 2014 9:21 AM
> To: Cooper Jr., Franklin
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 3/5] Update recipes to pull in Makefile
> changes
>
> On Thu, Feb 06, 2014 at 09:34:45AM -0600, Franklin S. Cooper Jr wrote:
> > * Update SRCREV to pull in Makefile changes.
> > * Some makefile changes results in changes to do_install.
>
> Any details on what kind of Makefile changes happened across the board?
[Franklin] Most common change was handling nonexistent DESTDIR.
Other big change was moving some logic from the top level makefile (multiple applications in a git repo) into the individual applications Makefile.
SDK qt makefiles were also changed from Makefile.build to makefile.
>
>
> > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> > ---
> > .../arm-benchmarks/arm-benchmarks_1.3.bb | 4 +-
> > .../recipes-core/am-sysinfo/am-sysinfo_git.bb | 4 +-
> > .../recipes-core/matrix/matrix-gui-browser_2.0.bb | 4 +-
> > .../recipes-core/matrix/matrix-gui_2.0.bb | 4 +-
> > .../recipes-core/matrix/refresh-screen_2.0.bb | 4 +-
> > .../oprofile-example/oprofile-example_git.bb | 4 +-
> > .../ti-crypto-examples/ti-crypto-examples_git.bb | 4 +-
> > ...file.build-for-when-build-dir-is-not-the-.patch | 35 --------------------
> > .../recipes-qt/qt-apps/qt-tstat_2.0.bb | 13 ++++---
> > .../recipes-qt/qt-apps/quick-playground_1.0.bb | 11 ++++--
> > 10 files changed, 29 insertions(+), 58 deletions(-) delete mode
> > 100644
> > meta-arago-extras/recipes-qt/qt-apps/qt-tstat/0001-Update-Makefile.bui
> > ld-for-when-build-dir-is-not-the-.patch
> >
> > diff --git
> > a/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-
> benchmarks_1.
> > 3.bb
> > b/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-
> benchmarks_1.
> > 3.bb
> > index d46c0ab..952e50b 100644
> > ---
> > a/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-
> benchmarks_1.
> > 3.bb
> > +++ b/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-
> benchmark
> > +++ s_1.3.bb
> > @@ -4,10 +4,10 @@ LICENSE = "BSD"
> > LIC_FILES_CHKSUM =
> "file://COPYING;md5=7aefb5e1cffc7b6a3ef18b803f957922"
> > SECTION = "system"
> >
> > -PR = "r6"
> > +PR = "r7"
> >
> > BRANCH ?= "master"
> > -SRCREV = "eba9e69247c105f6d8dbcb56452ad4c4ea2df31e"
> > +SRCREV = "7f76ec24d3fedb9b2e3331f77c2f790c8b43f5f0"
> >
> > SRC_URI =
> "git://gitorious.org/arm_benchmarks/arm_benchmarks.git;protocol=git;branch
> =${BRANCH}"
> >
> > diff --git
> > a/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb
> > b/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb
> > index 5d13ad5..493a80a 100644
> > --- a/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb
> > +++ b/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb
> > @@ -6,10 +6,10 @@ LIC_FILES_CHKSUM =
> > "file://mem_util/mem_util.c;beginline=1;endline=37;md5=8aa8e7
> > SECTION = "system"
> >
> > PACKAGE_STRIP = "no"
> > -PR = "r8"
> > +PR = "r9"
> >
> > BRANCH ?= "master"
> > -SRCREV = "7aa7e7a316d24c06c8e6a4931f7297f209dfd8e1"
> > +SRCREV = "5df7da69a50d27b7f594db0918c5e6793c3a6237"
> >
> > SRC_URI =
> "git://gitorious.org/am_sysinfo/am_sysinfo.git;protocol=git;branch=${BRANCH}
> "
> >
> > diff --git
> > a/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb
> > b/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb
> > index 329b65a..4d41b73 100644
> > --- a/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb
> > +++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb
> > @@ -11,9 +11,9 @@ RDEPENDS_${PN} += "${QT_RDEPENDS_FONTS}"
> >
> > DEPENDS += "${QT_DEPENDS_WEBKIT}"
> >
> > -PR = "r3"
> > +PR = "r4"
> >
> > -SRCREV = "db2e6b10e5a14358b6120a4a28de2f9d591bc55c"
> > +SRCREV = "d962b18b628f0006642491c2250ef01557591e66"
> > BRANCH ?= "master"
> >
> > SRC_URI = "git://gitorious.org/matrix-gui-
> v2/matrix_browser.git;protocol=git;branch=${BRANCH}"
> > diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb
> > b/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb
> > index fa1f1e0..b96d67c 100644
> > --- a/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb
> > +++ b/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb
> > @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM =
> "file://LICENSE;md5=a886c9ef769b2d8271115d2502512e5d"
> >
> > SECTION = "multimedia"
> >
> > -PR = "r14"
> > +PR = "r15"
> >
> > INITSCRIPT_NAME = "matrix-gui-2.0"
> > INITSCRIPT_PARAMS = "defaults 97"
> > @@ -16,7 +16,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
> > inherit update-rc.d
> >
> > BRANCH ?= "master"
> > -SRCREV = "25311718417147bd87aaa25d758cde9a5bffa0a8"
> > +SRCREV = "a67a9721134fcbf9017d2dd361079f67b10b0ace"
> >
> > SRC_URI = "git://gitorious.org/matrix-gui-v2/matrix-gui-
> v2.git;protocol=git;branch=${BRANCH} \
> > file://init \
> > diff --git
> > a/meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb
> > b/meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb
> > index 68381e7..f409c1e 100644
> > --- a/meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb
> > +++ b/meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb
> > @@ -7,9 +7,9 @@ SECTION = "multimedia"
> > # Make sure that QT font libraries have been installed
> > RDEPENDS_${PN} += "qt4-embedded-fonts"
> >
> > -PR = "r2"
> > +PR = "r3"
> >
> > -SRCREV = "23acf023743e864bb30158636840a080e36d45b6"
> > +SRCREV = "e652edf9403fe9329e1bcd14b79503045a53705c"
> > BRANCH ?= "master"
> >
> > SRC_URI = "git://gitorious.org/matrix-gui-v2/refresh-
> screen.git;protocol=git;branch=${BRANCH}"
> > diff --git
> > a/meta-arago-extras/recipes-core/oprofile-example/oprofile-example_git
> > .bb
> > b/meta-arago-extras/recipes-core/oprofile-example/oprofile-example_git
> > .bb
> > index 5799f6c..fa203e0 100644
> > ---
> > a/meta-arago-extras/recipes-core/oprofile-example/oprofile-example_git
> > .bb
> > +++ b/meta-arago-extras/recipes-core/oprofile-example/oprofile-example
> > +++ _git.bb
> > @@ -7,10 +7,10 @@ SECTION = "system"
> >
> > INHIBIT_PACKAGE_STRIP = "1"
> >
> > -PR = "r2"
> > +PR = "r3"
> >
> > BRANCH ?= "master"
> > -SRCREV = "3aa2de4bb698c96f8a481c4048e3140503b26082"
> > +SRCREV = "066ecdab2bf0788eec253bf27fd44f7436f0cd04"
> >
> > SRC_URI = "git://gitorious.org/oprofile-example/oprofile-
> example.git;protocol=git;branch=${BRANCH}"
> >
> > diff --git
> > a/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples
> > _git.bb
> > b/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples
> > _git.bb
> > index 995d60a..485faed 100644
> > ---
> > a/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples
> > _git.bb
> > +++ b/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-exam
> > +++ ples_git.bb
> > @@ -5,10 +5,10 @@ LIC_FILES_CHKSUM =
> > "file://AES/aes_256.c;beginline=9;endline=35;md5=8edbb4dee965
> > SECTION = "console"
> > DEPENDS += "openssl"
> >
> > -PR = "r5"
> > +PR = "r6"
> >
> > BRANCH ?= "master"
> > -SRCREV = "1c6a493600ce1a830611cc5671639c03cc3ebc01"
> > +SRCREV = "616ca5b6a0feefc1ba2e876c7ced4407f927ef1b"
> >
> > SRC_URI = "git://arago-project.org/git/projects/crypto-example-
> apps.git;protocol=git;branch=${BRANCH}"
> >
> > diff --git
> > a/meta-arago-extras/recipes-qt/qt-apps/qt-tstat/0001-Update-Makefile.b
> > uild-for-when-build-dir-is-not-the-.patch
> > b/meta-arago-extras/recipes-qt/qt-apps/qt-tstat/0001-Update-Makefile.b
> > uild-for-when-build-dir-is-not-the-.patch
> > deleted file mode 100644
> > index 3ceb74a..0000000
> > ---
> > a/meta-arago-extras/recipes-qt/qt-apps/qt-tstat/0001-Update-Makefile.b
> > uild-for-when-build-dir-is-not-the-.patch
> > +++ /dev/null
> > @@ -1,35 +0,0 @@
> > -From 00666002c48ebbb21e73eb9fbe90615cef87cc11 Mon Sep 17
> 00:00:00
> > 2001
> > -From: Denys Dmytriyenko <denys@ti.com>
> > -Date: Mon, 14 Oct 2013 18:53:28 -0400
> > -Subject: [PATCH] Update Makefile.build for when build dir is not the
> > same as
> > - source dir
> > -
> > -Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> > ----
> > - Makefile.build | 3 ++-
> > - 1 file changed, 2 insertions(+), 1 deletion(-)
> > -
> > -diff --git a/Makefile.build b/Makefile.build -index 18892d4..72b8e34
> > 100644
> > ---- a/Makefile.build
> > -+++ b/Makefile.build
> > -@@ -2,6 +2,7 @@
> > -
> > - ENV_SETUP ?= ../../linux-devkit/environment-setup
> > - DESTDIR ?=
> > -+BUILDDIR ?= .
> > - PLATFORM ?=
> > - MATRIX_APP_DIR ?= /usr/share/matrix-gui-2.0/apps/
> > - PLATFORM_DEFINE ?= "Platform_${PLATFORM}"
> > -@@ -28,7 +29,7 @@ clean : ${SOURCES} qmake
> > -
> > - install_common:
> > - @install -d ${DESTDIR}/usr/bin
> > -- @install -m 0755 ThermostatDemo
> ${DESTDIR}/usr/bin/ThermostatDemo
> > -+ @install -m 0755 ${BUILDDIR}/ThermostatDemo
> > -+${DESTDIR}/usr/bin/ThermostatDemo
> > - @install -d ${DESTDIR}${MATRIX_APP_DIR}/qt_tstat
> > - @cp -rf matrix-files/* ${DESTDIR}${MATRIX_APP_DIR}/qt_tstat
> > -
> > ---
> > -1.8.3.2
> > -
> > diff --git a/meta-arago-extras/recipes-qt/qt-apps/qt-tstat_2.0.bb
> > b/meta-arago-extras/recipes-qt/qt-apps/qt-tstat_2.0.bb
> > index 8035537..6704354 100644
> > --- a/meta-arago-extras/recipes-qt/qt-apps/qt-tstat_2.0.bb
> > +++ b/meta-arago-extras/recipes-qt/qt-apps/qt-tstat_2.0.bb
> > @@ -12,16 +12,15 @@ require recipes-core/matrix/matrix-gui-paths.inc
> >
> > inherit qt-provider
> >
> > -PR = "r5"
> > +PR = "r6"
> >
> > DEPENDS += "${QT_DEPENDS_SVG} ${QT_DEPENDS_SCRIPT}"
> >
> > BRANCH ?= "master"
> > -SRCREV = "27e033a0ac59928cc3acbb45f4d9bc2101fcf024"
> > +SRCREV = "e6225f9e485675e4390dcc7575810e9f63501692"
> >
> > SRC_URI = " \
> > git://gitorious.org/thermostat-demo/thermostat-demo.git;protocol=git
> \
> > - file://0001-Update-Makefile.build-for-when-build-dir-is-not-the-.patch
> \
> > "
> >
> > SRC_URI += "${@base_conditional('QT_PROVIDER', 'qt5',
> > 'file://0002-Replace-QtGui-with-QtWidgets-per-Qt5-migration-guide.patc
> > h \ @@ -29,9 +28,13 @@ SRC_URI +=
> "${@base_conditional('QT_PROVIDER',
> > 'qt5', 'file://0002-Replace-QtGui
> >
> > S = "${WORKDIR}/git/"
> >
> > -# use the make targets already created in the Makefile.build files
> > +BUILDDIR ?= "."
> > +
> > do_install() {
> > - cd ${S} && make -f Makefile.build DESTDIR=${D} BUILDDIR=${B}
> install_common
> > + install -d ${D}/usr/bin
> > + install -m 0755 ${BUILDDIR}/ThermostatDemo
> ${D}/usr/bin/ThermostatDemo
> > + install -d ${D}${MATRIX_APP_DIR}/qt_tstat
> > + cp -rf matrix-files/* ${D}${MATRIX_APP_DIR}/qt_tstat
> > }
> >
> > PACKAGES += "matrix-gui-thermostat-demo"
> > diff --git
> > a/meta-arago-extras/recipes-qt/qt-apps/quick-playground_1.0.bb
> > b/meta-arago-extras/recipes-qt/qt-apps/quick-playground_1.0.bb
> > index a8e8869..5f493d3 100644
> > --- a/meta-arago-extras/recipes-qt/qt-apps/quick-playground_1.0.bb
> > +++ b/meta-arago-extras/recipes-qt/qt-apps/quick-playground_1.0.bb
> > @@ -6,10 +6,10 @@ LIC_FILES_CHKSUM =
> "file://Licence.txt;md5=7cc88160b55ec5db6c6c5bb8e3238c0b"
> >
> > require recipes-core/matrix/matrix-gui-paths.inc
> >
> > -PR = "r0"
> > +PR = "r1"
> >
> > BRANCH = "master"
> > -SRCREV = "49bb5b7e1df2f61fc361b7d83a6ec838ffc5381c"
> > +SRCREV = "0be45ce805147798c98b2dee65e41de67bfcea5d"
> >
> > SRC_URI = "git://arago-project.org/git/projects/qt4-
> demos.git;protocol=git;branch=${BRANCH}"
> >
> > @@ -17,9 +17,12 @@ S = "${WORKDIR}/git/qml_playground"
> >
> > inherit qt4e
> >
> > -# use the make targets already created in the Makefile.build files
> > do_install() {
> > - make -f Makefile.build DESTDIR=${D} install_common
> > + install -d ${D}/usr/bin
> > + install -m 0755 runQMLplay.sh ${D}/usr/bin/
> > + install -d ${D}${MATRIX_APP_DIR}/qml_playground
> > + cp -r apps/qml_playground/* ${D}${MATRIX_APP_DIR}/qml_playground
> > + install -m 0755 qtquickplayground
> > + ${D}${MATRIX_APP_DIR}/qml_playground/
> > }
> >
> > PACKAGES += "matrix-gui-apps-quick-playground"
> > --
> > 1.7.0.4
> >
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 4/5] tisdk-install: Use updated environment variable
2014-02-06 15:34 [PATCH 1/5] ti-tisdk-makefile: Update U-boot makefile Franklin S. Cooper Jr
` (2 preceding siblings ...)
2014-02-06 15:34 ` [PATCH 3/5] Update recipes to pull in Makefile changes Franklin S. Cooper Jr
@ 2014-02-06 15:34 ` Franklin S. Cooper Jr
2014-02-06 15:34 ` [PATCH 5/5] ti-tisdk-makefile: Update Makefile stubs Franklin S. Cooper Jr
4 siblings, 0 replies; 12+ messages in thread
From: Franklin S. Cooper Jr @ 2014-02-06 15:34 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
* The current script depends on an environment variable that no longer exist.
* Update the script to use the latest environment variable.
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../tisdk-install/tisdk-install/sdk-install.sh | 4 ++--
.../tisdk-install/tisdk-install_1.0.bb | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/meta-arago-distro/recipes-tisdk/tisdk-install/tisdk-install/sdk-install.sh b/meta-arago-distro/recipes-tisdk/tisdk-install/tisdk-install/sdk-install.sh
index 39fbe82..86799c1 100644
--- a/meta-arago-distro/recipes-tisdk/tisdk-install/tisdk-install/sdk-install.sh
+++ b/meta-arago-distro/recipes-tisdk/tisdk-install/tisdk-install/sdk-install.sh
@@ -84,14 +84,14 @@ rm $install_dir/linux-devkit.sh
# Update example applications CCS project files
# Grab some essential variables from environment-setup
-TARGET_SYS=`sed -n 's/^export TARGET_SYS=//p' $install_dir/linux-devkit/environment-setup`
+REAL_MULTIMACH_TARGET_SYS=`sed -n 's/^export REAL_MULTIMACH_TARGET_SYS=//p' $install_dir/linux-devkit/environment-setup`
TOOLCHAIN_SYS=`sed -n 's/^export TOOLCHAIN_SYS=//p' $install_dir/linux-devkit/environment-setup`
SDK_SYS=`sed -n 's/^export SDK_SYS=//p' $install_dir/linux-devkit/environment-setup`
# Grab toolchain's GCC version
GCC_VERSION=`ls $install_dir/linux-devkit/sysroots/$SDK_SYS/usr/lib/gcc/$TOOLCHAIN_SYS/`
-TOOLCHAIN_TARGET_INCLUDE_DIR="linux-devkit/sysroots/$TARGET_SYS/usr/include"
+TOOLCHAIN_TARGET_INCLUDE_DIR="linux-devkit/sysroots/$REAL_MULTIMACH_TARGET_SYS/usr/include"
TOOLCHAIN_INCLUDE_DIR="linux-devkit/sysroots/$SDK_SYS/usr/lib/gcc/$TOOLCHAIN_SYS/$GCC_VERSION/include"
# Update CCS project files using important paths to headers
diff --git a/meta-arago-distro/recipes-tisdk/tisdk-install/tisdk-install_1.0.bb b/meta-arago-distro/recipes-tisdk/tisdk-install/tisdk-install_1.0.bb
index 886a6a6..9548ee5 100644
--- a/meta-arago-distro/recipes-tisdk/tisdk-install/tisdk-install_1.0.bb
+++ b/meta-arago-distro/recipes-tisdk/tisdk-install/tisdk-install_1.0.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://../sdk-install.sh;beginline=3;endline=19;md5=4b899037
SRC_URI = "file://sdk-install.sh"
-PR = "r1"
+PR = "r2"
do_install () {
install -d ${D}/
--
1.7.0.4
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH 5/5] ti-tisdk-makefile: Update Makefile stubs
2014-02-06 15:34 [PATCH 1/5] ti-tisdk-makefile: Update U-boot makefile Franklin S. Cooper Jr
` (3 preceding siblings ...)
2014-02-06 15:34 ` [PATCH 4/5] tisdk-install: Use updated environment variable Franklin S. Cooper Jr
@ 2014-02-06 15:34 ` Franklin S. Cooper Jr
4 siblings, 0 replies; 12+ messages in thread
From: Franklin S. Cooper Jr @ 2014-02-06 15:34 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
* Various recipes have been updated to pull in the latest makefile changes.
* Update makefile stubs to reflect these changes.
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../ti-tisdk-makefile/Makefile_dual-camera-demo | 8 ++++----
.../ti-tisdk-makefile/Makefile_matrix-gui-browser | 8 ++++----
.../ti-tisdk-makefile/Makefile_qt-tstat | 8 ++++----
.../ti-tisdk-makefile/Makefile_quick-playground | 8 ++++----
.../ti-tisdk-makefile/Makefile_refresh-screen | 8 ++++----
.../ti-tisdk-makefile/Makefile_ti-crypto-examples | 2 +-
.../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb | 2 +-
7 files changed, 22 insertions(+), 22 deletions(-)
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_dual-camera-demo b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_dual-camera-demo
index a682d59..14ee3df 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_dual-camera-demo
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_dual-camera-demo
@@ -3,22 +3,22 @@ dual-camera:
@echo ================================
@echo Building Dual Camera Demo
@echo ================================
- @cd example-applications; cd `find . -name "*dual-camera-demo*"`; make -f Makefile.build release
+ @cd example-applications; cd `find . -name "*dual-camera-demo*"`; make
dual-camera_clean:
@echo ================================
@echo Building Dual Camera Demo
@echo ================================
- @cd example-applications; cd `find . -name "*dual-camera-demo*"`; make -f Makefile.build clean
+ @cd example-applications; cd `find . -name "*dual-camera-demo*"`; make clean
dual-camera_install:
@echo ===================================================
@echo Installing Dual Camera Demo - Release version
@echo ===================================================
- @cd example-applications; cd `find . -name "*dual-camera-demo*"`; make -f Makefile.build install
+ @cd example-applications; cd `find . -name "*dual-camera-demo*"`; make install
dual-camera_install_debug:
@echo =================================================
@echo Installing Dual Camera Demo - Debug version
@echo =================================================
- @cd example-applications; cd `find . -name "*dual-camera-demo*"`; make -f Makefile.build install_debug
+ @cd example-applications; cd `find . -name "*dual-camera-demo*"`; make install_debug
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_matrix-gui-browser b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_matrix-gui-browser
index 2fc3b21..eb60e4f 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_matrix-gui-browser
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_matrix-gui-browser
@@ -3,22 +3,22 @@ matrix-gui-browser:
@echo =================================
@echo Building Matrix GUI Browser
@echo =================================
- @cd example-applications; cd `find . -name "*matrix-gui-browser*"`; make -f Makefile.build release
+ @cd example-applications; cd `find . -name "*matrix-gui-browser*"`; make release
matrix-gui-browser_clean:
@echo =================================
@echo Cleaning Matrix GUI Browser
@echo =================================
- @cd example-applications; cd `find . -name "*matrix-gui-browser*"`; make -f Makefile.build clean
+ @cd example-applications; cd `find . -name "*matrix-gui-browser*"`; make clean
matrix-gui-browser_install:
@echo ===================================================
@echo Installing Matrix GUI Browser - Release version
@echo ===================================================
- @cd example-applications; cd `find . -name "*matrix-gui-browser*"`; make -f Makefile.build install
+ @cd example-applications; cd `find . -name "*matrix-gui-browser*"`; make install
matrix-gui-browser_install_debug:
@echo =================================================
@echo Installing Matrix GUI Browser - Debug Version
@echo =================================================
- @cd example-applications; cd `find . -name "*matrix-gui-browser*"`; make -f Makefile.build install_debug
+ @cd example-applications; cd `find . -name "*matrix-gui-browser*"`; make install_debug
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_qt-tstat b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_qt-tstat
index 857e058..36d7ef5 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_qt-tstat
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_qt-tstat
@@ -3,22 +3,22 @@ qt-tstat:
@echo ================================
@echo Building QT Thermostat App
@echo ================================
- @cd example-applications; cd `find . -name "*qt-tstat*"`; make -f Makefile.build release
+ @cd example-applications; cd `find . -name "*qt-tstat*"`; make release
qt-tstat_clean:
@echo ================================
@echo Cleaning QT Thermostat App
@echo ================================
- @cd example-applications; cd `find . -name "*qt-tstat*"`; make -f Makefile.build clean
+ @cd example-applications; cd `find . -name "*qt-tstat*"`; make clean
qt-tstat_install:
@echo ===================================================
@echo Installing QT Thermostat App - Release version
@echo ===================================================
- @cd example-applications; cd `find . -name "*qt-tstat*"`; make -f Makefile.build install
+ @cd example-applications; cd `find . -name "*qt-tstat*"`; make install
qt-tstat_install_debug:
@echo =================================================
@echo Installing QT Thermostat App - Debug version
@echo =================================================
- @cd example-applications; cd `find . -name "*qt-tstat*"`; make -f Makefile.build install_debug
+ @cd example-applications; cd `find . -name "*qt-tstat*"`; make install_debug
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_quick-playground b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_quick-playground
index 06cbd49..a87471b 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_quick-playground
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_quick-playground
@@ -3,22 +3,22 @@ quick-playground:
@echo =================================
@echo Building Quick Playground App
@echo =================================
- @cd example-applications; cd `find . -name "*quick-playground*"`; make -f Makefile.build release
+ @cd example-applications; cd `find . -name "*quick-playground*"`; make
quick-playground_clean:
@echo =================================
@echo Cleaning Quick Playground App
@echo =================================
- @cd example-applications; cd `find . -name "*quick-playground*"`; make -f Makefile.build clean
+ @cd example-applications; cd `find . -name "*quick-playground*"`; make clean
quick-playground_install:
@echo ====================================================
@echo Installing Quick Playground App - Release version
@echo ====================================================
- @cd example-applications; cd `find . -name "*quick-playground*"`; make -f Makefile.build install
+ @cd example-applications; cd `find . -name "*quick-playground*"`; make install
quick-playground_install_debug:
@echo ==================================================
@echo Installing Quick Playground App - Debug version
@echo ==================================================
- @cd example-applications; cd `find . -name "*quick-playground*"`; make -f Makefile.build install_debug
+ @cd example-applications; cd `find . -name "*quick-playground*"`; make install_debug
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_refresh-screen b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_refresh-screen
index bcc17fa..6d8f203 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_refresh-screen
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_refresh-screen
@@ -3,22 +3,22 @@ refresh-screen:
@echo =============================
@echo Building Refresh Screen
@echo =============================
- @cd example-applications; cd `find . -name "*refresh-screen*"`; make -f Makefile.build release
+ @cd example-applications; cd `find . -name "*refresh-screen*"`; make release
refresh-screen_clean:
@echo =============================
@echo Cleaning Refresh Screen
@echo =============================
- @cd example-applications; cd `find . -name "*refresh-screen*"`; make -f Makefile.build clean
+ @cd example-applications; cd `find . -name "*refresh-screen*"`; make clean
refresh-screen_install:
@echo ================================================
@echo Installing Refresh Screen - Release version
@echo ================================================
- @cd example-applications; cd `find . -name "*refresh-screen*"`; make -f Makefile.build install
+ @cd example-applications; cd `find . -name "*refresh-screen*"`; make install
refresh-screen_install_debug:
@echo ==============================================
@echo Installing Refresh Screen - Debug Version
@echo ==============================================
- @cd example-applications; cd `find . -name "*refresh-screen*"`; make -f Makefile.build install_debug
+ @cd example-applications; cd `find . -name "*refresh-screen*"`; make install_debug
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_ti-crypto-examples b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_ti-crypto-examples
index 3588381..9ab9616 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_ti-crypto-examples
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_ti-crypto-examples
@@ -3,7 +3,7 @@ ti-crypto-examples:
@echo =================================
@echo Building TI Crypto Examples
@echo =================================
- @cd example-applications; cd `find . -name "*ti-crypto-examples*"`; make
+ @cd example-applications; cd `find . -name "*ti-crypto-examples*"`; make release
ti-crypto-examples_clean:
@echo =================================
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
index 374fa81..f8e0799 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
@@ -34,7 +34,7 @@ SRC_URI = "\
file://Makefile_dual-camera-demo \
"
-PR = "r26"
+PR = "r27"
MAKEFILES_COMMON = "linux \
matrix-gui \
--
1.7.0.4
^ permalink raw reply related [flat|nested] 12+ messages in thread