summaryrefslogtreecommitdiff
path: root/classes/nslu2_flashimg.oeclass
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-09-18 18:20:23 +0000
committerChris Larson <clarson@kergoth.com>2004-09-18 18:20:23 +0000
commit4b9805cba53ee926fbc9b3b72901b15d72982af0 (patch)
tree956c484f804848c2b0357c09d35742334f60dc8b /classes/nslu2_flashimg.oeclass
parent4d426656fdd26ae8e8066911c9a6d323e0f69cf8 (diff)
Merge
2004/09/19 00:03:51+09:30 (none)!rwhitby Fixed the Redbook -> Redboot typo in slugtool, and made corresponding changes to the nslu2 firmware unpacking and packing procedures. BKrev: 414c7c67rQASFlywei1gQZEgaXh7iQ
Diffstat (limited to 'classes/nslu2_flashimg.oeclass')
-rw-r--r--classes/nslu2_flashimg.oeclass16
1 files changed, 16 insertions, 0 deletions
diff --git a/classes/nslu2_flashimg.oeclass b/classes/nslu2_flashimg.oeclass
index e69de29bb2..f6170b9b73 100644
--- a/classes/nslu2_flashimg.oeclass
+++ b/classes/nslu2_flashimg.oeclass
@@ -0,0 +1,16 @@
+nslu2_pack_image () {
+ install -d ${DEPLOY_DIR_IMAGE}/slug
+ install -m 0644 ${STAGING_LIBDIR}/nslu2-binaries/Redboot \
+ ${STAGING_LIBDIR}/nslu2-binaries/Trailer \
+ ${STAGING_LIBDIR}/nslu2-binaries/SysConf \
+ ${DEPLOY_DIR_IMAGE}/slug/
+ install -m 0644 ${STAGING_KERNEL_DIR}/zImage ${DEPLOY_DIR_IMAGE}/slug/vmlinuz
+ install -m 0644 ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ext2.gz ${DEPLOY_DIR_IMAGE}/slug/ramdisk.gz
+ cd ${DEPLOY_DIR_IMAGE}/slug
+ slugtool pack ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.img
+ rm -f ${DEPLOY_DIR_IMAGE}/zImage* ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ext2.gz
+ rm -rf ${DEPLOY_DIR_IMAGE}/slug
+}
+
+EXTRA_IMAGEDEPENDS += 'slugtool-native nslu2-firmware-binary'
+IMAGE_POSTPROCESS_COMMAND += "nslu2_pack_image; "