diff options
author | John Crispin <blogic@openwrt.org> | 2014-07-20 17:30:48 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-07-20 17:30:48 +0000 |
commit | 25eedaa1ada41f32c3120b1e45b5408aa2e9f713 (patch) | |
tree | b0d035abd2614e4a2d460ae691c717a594572678 | |
parent | 3c22f66f588d54e5189d538df6ce7b6773774d74 (diff) | |
download | upstream-25eedaa1ada41f32c3120b1e45b5408aa2e9f713.tar.gz upstream-25eedaa1ada41f32c3120b1e45b5408aa2e9f713.tar.bz2 upstream-25eedaa1ada41f32c3120b1e45b5408aa2e9f713.zip |
scripts/om-fwupgradecfg-gen.sh: add support for the OM5P
Signed-off-by: Marek Lindner <marek@open-mesh.com>
[sven@open-mesh.com: Rebased]
Signed-off-by: Sven Eckelmann <sven@open-mesh.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41771 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | scripts/om-fwupgradecfg-gen.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/om-fwupgradecfg-gen.sh b/scripts/om-fwupgradecfg-gen.sh index 779598a2f8..8869059602 100644 --- a/scripts/om-fwupgradecfg-gen.sh +++ b/scripts/om-fwupgradecfg-gen.sh @@ -7,7 +7,7 @@ # usage() { - echo "Usage: $0 <OM2P|MR600> <out file path> <kernel path> <rootfs path>" + echo "Usage: $0 <OM2P|OM5P|MR600> <out file path> <kernel path> <rootfs path>" rm -f $CFG_OUT exit 1 } @@ -26,7 +26,7 @@ case $CE_TYPE in FLASH_BS=262144 MD5_SKIP_BLOCKS=1 ;; - MR600) + OM5P|MR600) MAX_PART_SIZE=7808 KERNEL_FLASH_ADDR=0xb0000 FLASH_BS=65536 |