From c423dc9db2d052d997e85e741b16ca919ee3011e Mon Sep 17 00:00:00 2001 From: Alexandre Courbot Date: Sat, 16 Jun 2012 16:52:15 +0900 Subject: Support kernel_noload uImage type Do not trigger an error when loading a uImage with the IH_TYPE_KERNEL_NOLOAD type. These images do not need to be copied to their load address before being executed. All archs (excepted PPC) do not use the uImage load and entry point parameters, so their current behavior needs not be changed further than just accepting the image type. Tested and validated on ARM. Signed-off-by: Alexandre Courbot Signed-off-by: Simon Horman --- include/image.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/image.h b/include/image.h index e52acbe..e742aae 100644 --- a/include/image.h +++ b/include/image.h @@ -129,6 +129,8 @@ #define IH_TYPE_FILESYSTEM 7 /* Filesystem Image (any type) */ #define IH_TYPE_FLATDT 8 /* Binary Flat Device Tree Blob */ #define IH_TYPE_KWBIMAGE 9 /* Kirkwood Boot Image */ +#define IH_TYPE_KERNEL_NOLOAD 14 /* OS Kernel Image, can run */ + /* from any load address */ /* * Compression Types -- cgit