diff options
author | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
commit | b2f192faabe412adce79534e22efe9fb69ee40e2 (patch) | |
tree | 7076c49d4286f8a1733650bd8fbc7161af200d57 /openembedded/classes/srec.bbclass | |
parent | 2cf0eadf9f730027833af802d7e6c90b44248f80 (diff) | |
download | poky-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.gz |
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/classes/srec.bbclass')
-rw-r--r-- | openembedded/classes/srec.bbclass | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/openembedded/classes/srec.bbclass b/openembedded/classes/srec.bbclass deleted file mode 100644 index e7bdc6c75d..0000000000 --- a/openembedded/classes/srec.bbclass +++ /dev/null | |||
@@ -1,28 +0,0 @@ | |||
1 | # | ||
2 | # Creates .srec files from images. | ||
3 | # | ||
4 | # Useful for loading with Yamon. | ||
5 | |||
6 | # Define SREC_VMAADDR in your machine.conf. | ||
7 | |||
8 | SREC_CMD = "${TARGET_PREFIX}objcopy -O srec -I binary --adjust-vma ${SREC_VMAADDR} ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.${type} ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.${type}.srec" | ||
9 | |||
10 | # Do not build srec files for these types of images: | ||
11 | SREC_SKIP = "tar" | ||
12 | |||
13 | do_srec[nostamp] = 1 | ||
14 | |||
15 | do_srec () { | ||
16 | if [ ${SREC_VMAADDR} = "" ] ; then | ||
17 | oefatal Cannot do_srec without SREC_VMAADDR defined. | ||
18 | fi | ||
19 | for type in ${IMAGE_FSTYPES}; do | ||
20 | for skiptype in ${SREC_SKIP}; do | ||
21 | if [ $type = $skiptype ] ; then continue 2 ; fi | ||
22 | done | ||
23 | ${SREC_CMD} | ||
24 | done | ||
25 | return 0 | ||
26 | } | ||
27 | |||
28 | addtask srec after do_rootfs before do_build | ||