All of lore.kernel.org
 help / color / mirror / Atom feed
* [tisdk-build-scripts][PATCH v2] tisdk-build-scripts: Allow support for uImage and zImage
@ 2013-10-10 22:45 Franklin S. Cooper Jr
  2013-10-16  2:06 ` Denys Dmytriyenko
  0 siblings, 1 reply; 2+ messages in thread
From: Franklin S. Cooper Jr @ 2013-10-10 22:45 UTC (permalink / raw)
  To: meta-arago; +Cc: Franklin S. Cooper Jr

* There is a possibility some SDKs will use uImage while others will use
  zImage.
* Support both choices.

Version 2 changes:
* Rebase and drop 1 out of the 3 changes that were already in mainline.
* Simplify if statement conditional.
* Use Bash's regular expression expansion capability.
* Fix inconsistent variable name usage.

Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 lib/oesdk/bitbake-test-sdk-image |    2 +-
 lib/oesdk/package-sdks           |   15 ++++++++-------
 2 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/lib/oesdk/bitbake-test-sdk-image b/lib/oesdk/bitbake-test-sdk-image
index 9122d89..7baa106 100644
--- a/lib/oesdk/bitbake-test-sdk-image
+++ b/lib/oesdk/bitbake-test-sdk-image
@@ -174,7 +174,7 @@ extract_sdk_image() {
         cp $sdk_path/$filesys $test_dir/temp/filesystem
 
         # Find the kernel image
-        kernel=`find ./$sdk_path -name "uImage-$m.bin" | xargs basename`
+        kernel=`find ./$sdk_path -name "[uz]Image-$m.bin" | xargs basename`
         # This is a critical failure and will not be able to be skipped
         if [ -z "$kernel" ]
         then
diff --git a/lib/oesdk/package-sdks b/lib/oesdk/package-sdks
index 8f4e5e2..d6b01f7 100644
--- a/lib/oesdk/package-sdks
+++ b/lib/oesdk/package-sdks
@@ -48,18 +48,19 @@ create_sd_card_content() {
         rm u-boot-spl.bin-$m
     fi
 
-    # For some devices the uImage  and dtb files are read from the /boot
-    # directory of the rootfs.  In this case do not package the uImage
-    # and device tree files into the boot partition as it will cause
-    # confusion.
+    # For some devices the uImage/zImage and dtb files are read
+    # from the /boot directory of the rootfs. In this case do
+    # not package the uImage/zImage and device tree files into
+    # the boot partition as it will cause confusion.
     if [ "$PACKAGE_BOOT_KERNEL_FILES" = "true" ]
     then
-        if [ -e uImage-$m.bin ]
+        if [ -e [uz]Image-$m.bin ]
         then
-            mv uImage-$m.bin uImage
+            kernel_image=`ls [uz]Image-$m.bin | grep -o [uz]Image`
+            mv [uz]Image-$m.bin $kernel_image
         fi
     else
-        rm -f uImage*
+        rm -f [uz]Image*
         rm -f *.dtb
     fi
 
-- 
1.7.0.4



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [tisdk-build-scripts][PATCH v2] tisdk-build-scripts: Allow support for uImage and zImage
  2013-10-10 22:45 [tisdk-build-scripts][PATCH v2] tisdk-build-scripts: Allow support for uImage and zImage Franklin S. Cooper Jr
@ 2013-10-16  2:06 ` Denys Dmytriyenko
  0 siblings, 0 replies; 2+ messages in thread
From: Denys Dmytriyenko @ 2013-10-16  2:06 UTC (permalink / raw)
  To: Franklin S. Cooper Jr; +Cc: meta-arago

On Thu, Oct 10, 2013 at 05:45:01PM -0500, Franklin S. Cooper Jr wrote:
> * There is a possibility some SDKs will use uImage while others will use
>   zImage.
> * Support both choices.
> 
> Version 2 changes:
> * Rebase and drop 1 out of the 3 changes that were already in mainline.
> * Simplify if statement conditional.
> * Use Bash's regular expression expansion capability.
> * Fix inconsistent variable name usage.

Seems reasonable. Haven't tried it myself yet...


> Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> ---
>  lib/oesdk/bitbake-test-sdk-image |    2 +-
>  lib/oesdk/package-sdks           |   15 ++++++++-------
>  2 files changed, 9 insertions(+), 8 deletions(-)
> 
> diff --git a/lib/oesdk/bitbake-test-sdk-image b/lib/oesdk/bitbake-test-sdk-image
> index 9122d89..7baa106 100644
> --- a/lib/oesdk/bitbake-test-sdk-image
> +++ b/lib/oesdk/bitbake-test-sdk-image
> @@ -174,7 +174,7 @@ extract_sdk_image() {
>          cp $sdk_path/$filesys $test_dir/temp/filesystem
>  
>          # Find the kernel image
> -        kernel=`find ./$sdk_path -name "uImage-$m.bin" | xargs basename`
> +        kernel=`find ./$sdk_path -name "[uz]Image-$m.bin" | xargs basename`
>          # This is a critical failure and will not be able to be skipped
>          if [ -z "$kernel" ]
>          then
> diff --git a/lib/oesdk/package-sdks b/lib/oesdk/package-sdks
> index 8f4e5e2..d6b01f7 100644
> --- a/lib/oesdk/package-sdks
> +++ b/lib/oesdk/package-sdks
> @@ -48,18 +48,19 @@ create_sd_card_content() {
>          rm u-boot-spl.bin-$m
>      fi
>  
> -    # For some devices the uImage  and dtb files are read from the /boot
> -    # directory of the rootfs.  In this case do not package the uImage
> -    # and device tree files into the boot partition as it will cause
> -    # confusion.
> +    # For some devices the uImage/zImage and dtb files are read
> +    # from the /boot directory of the rootfs. In this case do
> +    # not package the uImage/zImage and device tree files into
> +    # the boot partition as it will cause confusion.
>      if [ "$PACKAGE_BOOT_KERNEL_FILES" = "true" ]
>      then
> -        if [ -e uImage-$m.bin ]
> +        if [ -e [uz]Image-$m.bin ]
>          then
> -            mv uImage-$m.bin uImage
> +            kernel_image=`ls [uz]Image-$m.bin | grep -o [uz]Image`
> +            mv [uz]Image-$m.bin $kernel_image
>          fi
>      else
> -        rm -f uImage*
> +        rm -f [uz]Image*
>          rm -f *.dtb
>      fi
>  
> -- 
> 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] 2+ messages in thread

end of thread, other threads:[~2013-10-16  2:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-10 22:45 [tisdk-build-scripts][PATCH v2] tisdk-build-scripts: Allow support for uImage and zImage Franklin S. Cooper Jr
2013-10-16  2:06 ` Denys Dmytriyenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.