mkimage.wrapper
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:0k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #!/bin/bash
  2. #
  3. # Build PPCBoot image when `mkimage' tool is available.
  4. #
  5. MKIMAGE=$(type -path mkimage)
  6. if [ -z "${MKIMAGE}" ]; then
  7. # Doesn't exist
  8. echo '"mkimage" command not found - PPCBoot images will not be built' >&2
  9. exit 0;
  10. fi
  11. # Call "mkimage" to create PPCBoot image
  12. ${MKIMAGE} "$@"