home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / share / acpi-support / IBM.config < prev    next >
Encoding:
Text File  |  2007-03-29  |  1.5 KB  |  83 lines

  1. case "$model" in
  2.     # R40 
  3.     2681*|2682*|2683*|2892*|2893*|2896*|2898*|2899*)
  4.         ACPI_SLEEP=true;
  5.     ;;
  6.     # More R40
  7.     2722*|2723*|2724*|2897*)
  8.         ACPI_SLEEP=true;
  9.     ;;
  10.     # R50/p 
  11.     1829*|1830*|1831*|1832*|1833*|1836*|1840*|1841*)
  12.         ACPI_SLEEP=true;
  13.     ;;
  14.     # R50e
  15.     1834*|1842*|2670*)
  16.         ACPI_SLEEP=true;
  17.         SAVE_VIDEO_PCI_STATE=true;
  18.         SAVE_VBE_STATE=false;
  19.     ;;
  20.     # R52 
  21.     1846*|1847*|1848*|1849*|1850*|1858*|1870*)
  22.         ACPI_SLEEP=true;
  23.     ;;
  24.     # T21
  25.     2647*|2648*)
  26.         ACPI_SLEEP=true;
  27.     ;;
  28.     # T23 - seems to have a different format
  29.     475S*)
  30.         ACPI_SLEEP=true;
  31.     ;;
  32.     # T40/T41/T42/p
  33.     2373*|2374*|2375*|2376*|2378*|2379*)
  34.         ACPI_SLEEP=true;
  35.     ;;
  36.     # T43 
  37.     1871*|1872*|1873*|1874*|1875*|1876*)    
  38.         ACPI_SLEEP=true;
  39.     ;;
  40.     #T43/p
  41.     2668*|2669*|2678*|2679*|2686*|2687*)
  42.         ACPI_SLEEP=true;
  43.     ;;
  44.     # X30
  45.     2672*)
  46.         ACPI_SLEEP=true;
  47.         SAVE_VBE_STATE=false;
  48.         # Don't switch backlights off without extra help
  49.         RADEON_LIGHT=true;
  50.     ;;
  51.     # more X30
  52.     2673*|2884*|2885*|2890*|2891*)
  53.         ACPI_SLEEP=true;
  54.         # Don't switch backlights off without extra help
  55.         RADEON_LIGHT=true;
  56.     ;;
  57.     # X40
  58.     2369*|2370*|2371*|2372*|2382*|2386*)
  59.         ACPI_SLEEP=true;
  60.     ;;
  61.     # X41
  62.     1864*|1865*|2525*|2526*|2527*|2528*)
  63.         ACPI_SLEEP=true;
  64.     ;;
  65.     # X41 Tablet 
  66.     1866*|1867*|1869*)
  67.         ACPI_SLEEP=true;
  68.     ;;
  69.     # Z60m (Intel graphics) 'ThinkPad Z60m'
  70.     2529*)    
  71.         ACPI_SLEEP=true;
  72.     ;;
  73.     # ThinkPad R40 with a product name of "_______" (yes, 7 blank spaces)
  74.     "")
  75.     case "$bios_version" in
  76.         # BIOS version for "ThinkPad R40 model 2722, 2723, 2724, 2897"
  77.         1PET53WW*)
  78.             APCI_SLEEP=true
  79.         ;;
  80.     esac
  81.     ;;
  82. esac 
  83.