home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 49 / PCPP49b.iso / freebies / BeOS5-PersonalEdition / data1.cab / Data_Files / image.be / home / config / boot / UserSetupEnvironment.sample < prev    next >
Encoding:
Text File  |  2000-03-24  |  2.3 KB  |  66 lines

  1. #
  2. # This file (when renamed UserSetupEnvironment) is where user 
  3. # startup customizations of environment variables should go.
  4. # It is a standard /bin/sh shell script.  It is sourced very
  5. # early in the Bootscript process (before the app_server is
  6. # run).
  7. #
  8. #
  9. # NOTE: this is not where you should put aliases and such 
  10. #       that you want in the shell.  You should put those
  11. #       sorts of things in your .profile.
  12.  
  13. #
  14. # The following variable causes BeOS to use the old, pre-R4 audio 
  15. # subsystem (server and drivers) which may improve compatibility 
  16. # with old programs. You will, however, not get all the benefits 
  17. # of the new media system, such as video in/out and user-settable 
  18. # sounds.
  19. #
  20. #    export USE_OLD_AUDIO=true
  21.  
  22. #
  23. # The following variable enables the Be debugger to come up directly
  24. # when a program crashes (instead of the normal dialog box).  This is
  25. # intended only for use by programmers.  Uncomment the line if you
  26. # would like the debugger to come up without any intervening dialog boxes.
  27. #
  28. #   export BEDEBUG=true
  29.  
  30. #
  31. # The following variable enables the Be debugger to not load symbols
  32. # when a program crashes.  This is intended only for use by programmers.
  33. #
  34. #   export BEDEBUGSYMBOLS=false
  35.  
  36. #
  37. # The following variable enables malloc debugging for programs.  This
  38. # is useful for programmers to help catch errors in their programs
  39. # (such as freeing memory twice, using uninitialized memory, etc).
  40. # If you enable this variable here, it will be on for all Be applications
  41. # which may not be what you want.  You may wish to only do it from the
  42. # Terminal window that you run your app from.  Uncomment the line if
  43. # you would like malloc debugging turned on for all applications (again,
  44. # make sure you know what you're doing if you turn this on).
  45. #
  46. #   export MALLOC_DEBUG=true
  47.  
  48. #
  49. # The following variable tells BeOS to launch networking only when a supported
  50. # PCMCIA network card is inserted.
  51. #
  52. #    export PCMCIANETWORK=true
  53.  
  54. #
  55. # You can also override the defaults for the user name, the group name
  56. # and the shell by setting the USER, GROUP, and SHELL variables. Below 
  57. # are examples.  Be careful setting the SHELL variable as if it is wrong
  58. # (i.e. the shell you specify does not exist or crashes), many things
  59. # may fail to work.  Caveat User.
  60. #
  61. #   export USER=rms
  62. #   export GROUP=gnu
  63. #   export SHELL=/home/config/bin/tcsh
  64. #
  65.