FreeCalypso > hg > freecalypso-sw
view loadtools/compalram.c @ 1006:6e1fcffd3266
gsm-fw/riviera/rvt channel addition: missed the bit in rvt_task.c
author | Mychaela Falconia <falcon@ivan.Harhan.ORG> |
---|---|
date | Sun, 20 Mar 2016 18:58:07 +0000 |
parents | 86ff6d0b0a97 |
children |
line wrap: on
line source
/* * This module contains the main() function for fc-compalram, a trivial * utility that feeds a binary download image to Compal's bootloader * and then switches into serial tty pass-through. */ #include <stdio.h> #include <stdlib.h> extern char *target_ttydev; main(argc, argv) char **argv; { if (argc != 3) { fprintf(stderr, "usage: fc-compalram ttyport image.bin\n"); exit(1); } target_ttydev = argv[1]; set_compalstage_fullpath(argv[2]); open_target_serial(); perform_compal_stage(0); tty_passthru(); exit(0); }