home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer) / NeXT_Developer-3.3.iso / NextLibrary / Documentation / NextDev / Examples / Log / KernelServer / LoadCommands next >
Encoding:
Text File  |  1995-01-27  |  287 b   |  20 lines

  1. #
  2. # Script used for initializing the loadable kernel server to load
  3. # the test driver
  4. #
  5.  
  6. # Call mydriver_init during loading.
  7.  
  8. CALL        mydriver_init        0
  9.  
  10.  
  11. # Associate ports with proc/arg.
  12.  
  13. SMAP         mydriver0 mydriver_server 0
  14. ADVERTISE     mydriver0
  15.  
  16.  
  17. # Load immediately upon allocation.
  18.  
  19. START
  20.