runcfe

来自「一个很好的嵌入式linux平台下的bootloader」· 代码 · 共 28 行

TXT
28
字号
#!/bin/sh##  The optional parameter to this function specifies the name#  of a binary file to be in the 'flash2' device. You can#  boot this binary by typing:##  cfe> boot -elf -rawfs flash2:##if [ "$1" ]; then    OPTS="--with-swarm-pcmcia-flash-file $1"fi    swarm-run \        --sim-check-undefined \        --add-hw flash2.m4 \        --with-boot-flash-file cfe.srec \        --with-boot-flash-type ram \        --no-file \        --with-swarm-devs \        --with-sample-pci-devs \        --with-swarm-ide \        --with-swarm-ide-disk0-file disk0.dsk \        --with-swarm-ide-disk0-size 60 \        --with-memory-config 2x64 \	$OPTS \        --with-swarm-rtc-eeprom-file x1240rom.bin 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?