Changeset c63fde5c in rtems


Ignore:
Timestamp:
02/11/09 19:48:25 (15 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 5, master
Children:
938c666e
Parents:
9cf17fb
Message:

2009-02-11 Joel Sherrill <joel.sherrill@…>

  • configure.ac, start/start16.S: Remove duplicate configure option and add support for the configure time variable BSP_VIDEO_80x50.
Location:
c/src/lib/libbsp/i386/pc386
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/i386/pc386/ChangeLog

    r9cf17fb rc63fde5c  
     12009-02-11      Joel Sherrill <joel.sherrill@oarcorp.com>
     2
     3        * configure.ac, start/start16.S: Remove duplicate configure option and
     4        add support for the configure time variable BSP_VIDEO_80x50.
     5
    162008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
    27
  • c/src/lib/libbsp/i386/pc386/configure.ac

    r9cf17fb rc63fde5c  
    4141 - and you do want to access disks attached to this interface])
    4242
     43RTEMS_BSPOPTS_SET([BSP_VIDEO_80x50],[*],[0])
     44RTEMS_BSPOPTS_HELP([BSP_VIDEO_80x50],
     45[If defined, set the VGA display to 80x50.])
     46
    4347RTEMS_BSPOPTS_SET([BSP_PRESS_KEY_FOR_RESET],[*],[1])
    4448RTEMS_BSPOPTS_HELP([BSP_PRESS_KEY_FOR_RESET],
    45 [Determines, whether this BSP will wait for a key to be pressed
    46  before rebooting the PC.  This is useful for unattended PC deployments
    47 ])
     49[If defined, print a message and wait until pressed before resetting
     50 board when application exits.])
     51
     52RTEMS_BSPOPTS_SET([BSP_RESET_BOARD_AT_EXIT],[*],[1])
     53RTEMS_BSPOPTS_HELP([BSP_RESET_BOARD_AT_EXIT],
     54[If defined, reset the board when the application exits.])
    4855
    4956RTEMS_BSPOPTS_SET([CLOCK_DRIVER_USE_TSC],[*],[0])
     
    94101AC_SUBST(RTEMS_BSP)
    95102
    96 RTEMS_BSPOPTS_SET([BSP_PRESS_KEY_FOR_RESET],[*],[1])
    97 RTEMS_BSPOPTS_HELP([BSP_PRESS_KEY_FOR_RESET],
    98 [If defined, print a message and wait until pressed before resetting
    99  board when application exits.])
    100 
    101 RTEMS_BSPOPTS_SET([BSP_RESET_BOARD_AT_EXIT],[*],[1])
    102 RTEMS_BSPOPTS_HELP([BSP_RESET_BOARD_AT_EXIT],
    103 [If defined, reset the board when the application exits.])
    104 
    105103BSP_BOOTCARD_OPTIONS
    106104
  • c/src/lib/libbsp/i386/pc386/start/start16.S

    r9cf17fb rc63fde5c  
    5353        movw    %ax, %ss        #
    5454
    55 #if defined(RTEMS_VIDEO_80x50)
     55#if (RTEMS_VIDEO_80x50 == 1)
    5656
    5757        movl    $0x0040,%eax    # use 32 bit constant to ensure 16 MSB=0
Note: See TracChangeset for help on using the changeset viewer.