mkimage.wrapper
来自「这个linux源代码是很全面的~基本完整了~使用c编译的~由于时间问题我没有亲自」· WRAPPER 代码 · 共 17 行
WRAPPER
17 行
#!/bin/bash## Build PPCBoot image when `mkimage' tool is available.#MKIMAGE=$(type -path mkimage)if [ -z "${MKIMAGE}" ]; then # Doesn't exist echo '"mkimage" command not found - PPCBoot images will not be built' >&2 exit 0;fi# Call "mkimage" to create PPCBoot image${MKIMAGE} "$@"
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?