summaryrefslogtreecommitdiff
path: root/kexec/arch/arm/include/arch/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'kexec/arch/arm/include/arch/options.h')
-rw-r--r--kexec/arch/arm/include/arch/options.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/kexec/arch/arm/include/arch/options.h b/kexec/arch/arm/include/arch/options.h
index b68b746..6437c7d 100644
--- a/kexec/arch/arm/include/arch/options.h
+++ b/kexec/arch/arm/include/arch/options.h
@@ -8,6 +8,7 @@
#define OPT_DTB (OPT_ARCH_MAX+0)
#define OPT_ATAGS (OPT_ARCH_MAX+1)
#define OPT_IMAGE_SIZE (OPT_ARCH_MAX+2)
+#define OPT_PAGE_OFFSET (OPT_ARCH_MAX+3)
/* Options relevant to the architecture (excluding loader-specific ones),
* in this case none:
@@ -39,7 +40,8 @@
{ "ramdisk", 1, 0, OPT_RAMDISK }, \
{ "dtb", 1, 0, OPT_DTB }, \
{ "atags", 0, 0, OPT_ATAGS }, \
- { "image-size", 1, 0, OPT_IMAGE_SIZE },
+ { "image-size", 1, 0, OPT_IMAGE_SIZE }, \
+ { "page-offset", 1, 0, OPT_PAGE_OFFSET },
#define KEXEC_ALL_OPT_STR KEXEC_ARCH_OPT_STR "a:r:s:"