1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|
# # Creates .srec files from images. # # Useful for loading with Yamon. # Define SREC_VMAADDR in your machine.conf. 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" # Do not build srec files for these types of images: SREC_SKIP = "tar" do_srec[nostamp] = 1 do_srec () { if [ ${SREC_VMAADDR} = "" ] ; then oefatal Cannot do_srec without SREC_VMAADDR defined. fi for type in ${IMAGE_FSTYPES}; do for skiptype in ${SREC_SKIP}; do if [ $type = $skiptype ] ; then continue 2 ; fi done ${SREC_CMD} done return 0 } addtask srec after do_rootfs before do_build analytics.com/analytics.js','ga'); ga('create', 'UA-58643691-1', 'auto'); ga('send', 'pageview');