[PATCH 1/4] kexec/uImage: Introduce uImage_probe_kernel
Suzuki K. Poulose
suzuki at in.ibm.com
Wed Mar 6 03:38:33 EST 2013
From: Suzuki K. Poulose <suzuki at in.ibm.com>
uImage supports different types of payloads, including kernel,
ramdisks etc. uImage_probe() as of now checks whether the supplied
payload is of type KERNEL ( i.e, IH_TYPE_KERNEL or IH_TYPE_KERNEL_NOLOAD ).
Change this behaviour to return the image type, if it is one of the supported
payloads. This change is in prepartion to support ramdisks in uImage format.
Introduce a uImage_probe_kernel() which can be used by the archs to check if
the supplied payload is one of the KERNEL types.
Signed-off-by: Suzuki K. Poulose <suzuki at in.ibm.com>
---
include/kexec-uImage.h | 1 +
kexec/arch/arm/kexec-uImage-arm.c | 2 +-
kexec/arch/ppc/kexec-uImage-ppc.c | 2 +-
kexec/arch/sh/kexec-uImage-sh.c | 2 +-
kexec/kexec-uImage.c | 14 +++++++++++++-
5 files changed, 17 insertions(+), 4 deletions(-)
diff --git a/include/kexec-uImage.h b/include/kexec-uImage.h
index 8c7707d..266ca73 100644
--- a/include/kexec-uImage.h
+++ b/include/kexec-uImage.h
@@ -9,5 +9,6 @@ struct Image_info {
};
int uImage_probe(const unsigned char *buf, off_t len, unsigned int arch);
+int uImage_probe_kernel(const unsigned char *buf, off_t len, unsigned int arch);
int uImage_load(const unsigned char *buf, off_t len, struct Image_info *info);
#endif
diff --git a/kexec/arch/arm/kexec-uImage-arm.c b/kexec/arch/arm/kexec-uImage-arm.c
index 4875185..03c2f4d 100644
--- a/kexec/arch/arm/kexec-uImage-arm.c
+++ b/kexec/arch/arm/kexec-uImage-arm.c
@@ -11,7 +11,7 @@
int uImage_arm_probe(const char *buf, off_t len)
{
- return uImage_probe(buf, len, IH_ARCH_ARM);
+ return uImage_probe_kernel(buf, len, IH_ARCH_ARM);
}
int uImage_arm_load(int argc, char **argv, const char *buf, off_t len,
diff --git a/kexec/arch/ppc/kexec-uImage-ppc.c b/kexec/arch/ppc/kexec-uImage-ppc.c
index e55bf94..ef9adc4 100644
--- a/kexec/arch/ppc/kexec-uImage-ppc.c
+++ b/kexec/arch/ppc/kexec-uImage-ppc.c
@@ -48,7 +48,7 @@ void uImage_ppc_usage(void)
int uImage_ppc_probe(const char *buf, off_t len)
{
- return uImage_probe(buf, len, IH_ARCH_PPC);
+ return uImage_probe_kernel(buf, len, IH_ARCH_PPC);
}
static int ppc_load_bare_bits(int argc, char **argv, const char *buf,
diff --git a/kexec/arch/sh/kexec-uImage-sh.c b/kexec/arch/sh/kexec-uImage-sh.c
index e983165..130f12c 100644
--- a/kexec/arch/sh/kexec-uImage-sh.c
+++ b/kexec/arch/sh/kexec-uImage-sh.c
@@ -13,7 +13,7 @@
int uImage_sh_probe(const char *buf, off_t len)
{
- return uImage_probe(buf, len, IH_ARCH_SH);
+ return uImage_probe_kernel(buf, len, IH_ARCH_SH);
}
int uImage_sh_load(int argc, char **argv, const char *buf, off_t len,
diff --git a/kexec/kexec-uImage.c b/kexec/kexec-uImage.c
index 3bc85c5..3799a3b 100644
--- a/kexec/kexec-uImage.c
+++ b/kexec/kexec-uImage.c
@@ -16,6 +16,10 @@
* Basic uImage loader. Not rocket science.
*/
+/*
+ * Returns the image type if everything goes well. This would
+ * allow the user to decide if the image is of their interest.
+ */
int uImage_probe(const unsigned char *buf, off_t len, unsigned int arch)
{
struct image_header header;
@@ -84,7 +88,15 @@ int uImage_probe(const unsigned char *buf, off_t len, unsigned int arch)
return -1;
}
#endif
- return 0;
+ return (int)header.ih_type;
+}
+
+int uImage_probe_kernel(const unsigned char *buf, off_t len, unsigned int arch)
+{
+ int type = uImage_probe(buf, len, arch);
+
+ return (type == IH_TYPE_KERNEL || type == IH_TYPE_KERNEL_NOLOAD) ?
+ 0 : -1;
}
#ifdef HAVE_LIBZ
More information about the kexec
mailing list