Changes in / [7bd2c19:7bc4508] in mainline


Ignore:
Files:
6 added
5 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/amd64/Makefile.inc

    r7bd2c19 r7bc4508  
    5151        bus/usb/usbmast \
    5252        bus/usb/usbmid \
     53        bus/usb/usbmouse \
    5354        bus/usb/vhc
    5455
  • kernel/arch/ia64/src/ia64.c

    r7bd2c19 r7bc4508  
    9393void arch_pre_mm_init(void)
    9494{
     95        /*
     96         * Set Interruption Vector Address (i.e. location of interruption vector
     97         * table).
     98         */
     99        iva_write((uintptr_t) &ivt);
     100        srlz_d();
     101       
    95102}
    96103
  • kernel/arch/ia64/src/start.S

    r7bd2c19 r7bc4508  
    156156         * Now we are paging.
    157157         */
    158 
    159         #
    160         # Set Interruption Vector Address
    161         # (i.e. location of interruption vector table)
    162         #
    163         movl r8 = ivt ;;
    164         mov cr.iva = r8
    165         srlz.d ;;       
    166 
    167158       
    168159        # Switch to register bank 1
     
    174165        mov ar.bspstore = r8
    175166        loadrs
    176 
     167       
    177168        #
    178         # Initialize memory stack to some sane value and allocate a scratch area
     169        # Initialize memory stack to some sane value and allocate a scratch are
    179170        # on it.
    180171        #
     
    196187        srlz.i
    197188        srlz.d ;;
    198 
     189       
    199190        br.call.sptk.many b0 = arch_pre_main
    2001910:
  • uspace/Makefile

    r7bd2c19 r7bc4508  
    117117        drv/bus/usb/usbmast \
    118118        drv/bus/usb/usbmid \
     119        drv/bus/usb/usbmouse \
    119120        drv/bus/usb/vhc \
    120121        drv/nic/lo \
  • uspace/doc/doxygroups.h

    r7bd2c19 r7bc4508  
    272272
    273273        /**
     274         * @defgroup drvusbmouse USB mouse driver
     275         * @ingroup usb
     276         * @brief USB driver for mouse with boot protocol.
     277         */
     278
     279        /**
    274280         * @defgroup drvusbmast USB mass storage driver
    275281         * @ingroup usb
Note: See TracChangeset for help on using the changeset viewer.