FreeCalypso > hg > freecalypso-tools
view target-utils/c139explore/cmdtab.c @ 718:098fea21ba13
doc/Host-tools-overview: tiffs-mkfs description updated
The first version of tiffs-mkfs did not include a journal file in the created
FFS, expecting the firmware to create it on first boot. All historical
firmwares prior to a recent FC fix (2020-05) contain a bug in that code path,
thus images made with the first version of tiffs-mkfs were only acceptable to
very recent FC firmwares. tiffs-mkfs has now been extended to include an empty
journal in the created FFS, thus the restriction of working with recent fw only
has been lifted.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 23 Aug 2020 04:55:02 +0000 |
parents | 44a1de4264d8 |
children |
line wrap: on
line source
#include "cmdtab.h" extern void cmd_abbr(); extern void cmd_abbw(); extern void cmd_buz(); extern void cmd_buzlev(); extern void cmd_dac(); extern void cmd_dacon(); extern void cmd_dbl(); extern void cmd_hbars(); extern void cmd_jump(); extern void cmd_kpbl(); extern void cmd_lcdcmd(); extern void cmd_lcdfill(); extern void cmd_lcdinit(); extern void cmd_lcdpix(); extern void cmd_r8(); extern void cmd_r16(); extern void cmd_r32(); extern void cmd_vbars(); extern void cmd_vibe(); extern void cmd_w8(); extern void cmd_w16(); extern void cmd_w32(); extern void abb_init(); extern void abb_power_off(); extern void abb_unlock_page2(); extern void cmd_memdump_human(); const struct cmdtab cmdtab[] = { {"abbinit", abb_init}, {"abbpage2", abb_unlock_page2}, {"abbr", cmd_abbr}, {"abbw", cmd_abbw}, {"buz", cmd_buz}, {"buzlev", cmd_buzlev}, {"dac", cmd_dac}, {"dacon", cmd_dacon}, {"dbl", cmd_dbl}, {"dump", cmd_memdump_human}, {"hbars", cmd_hbars}, {"jump", cmd_jump}, {"kpbl", cmd_kpbl}, {"lcdcmd", cmd_lcdcmd}, {"lcdfill", cmd_lcdfill}, {"lcdinit", cmd_lcdinit}, {"lcdpix", cmd_lcdpix}, {"poweroff", abb_power_off}, {"r8", cmd_r8}, {"r16", cmd_r16}, {"r32", cmd_r32}, {"vbars", cmd_vbars}, {"vibe", cmd_vibe}, {"w8", cmd_w8}, {"w16", cmd_w16}, {"w32", cmd_w32}, {0, 0} };