?? mkimage.wrapper
字號:
#!/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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -