| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # This file contains the list of packages we install on the production | 5 # This file contains the list of packages we install on the production |
| 6 # machines (ie, end users). One package per line | 6 # machines (ie, end users). One package per line |
| 7 | 7 |
| 8 # To read these into a line in a script, do: | 8 # To read these into a line in a script, do: |
| 9 # PKGS=`cat $PACKAGE_LIST_FILE | grep -v ' *#' | grep -v '^ *$' | tr '\n' ' '` | 9 # PKGS=`cat $PACKAGE_LIST_FILE | grep -v ' *#' | grep -v '^ *$' | tr '\n' ' '` |
| 10 # change "' '" to "','" for a comma separated list | 10 # change "' '" to "','" for a comma separated list |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 # For setting time | 70 # For setting time |
| 71 ntp | 71 ntp |
| 72 | 72 |
| 73 # For encrypted home directories | 73 # For encrypted home directories |
| 74 dmsetup | 74 dmsetup |
| 75 libhx18 | 75 libhx18 |
| 76 libpam-mount | 76 libpam-mount |
| 77 e4fsprogs-git | 77 e4fsprogs-git |
| 78 | 78 |
| 79 # Chrome OS packages; keep alphabetized | 79 # Chrome OS packages; keep alphabetized |
| 80 # TODO: Remove armel restriction when chromeos-pam-offline is built. |
| 80 chromeos-acpi [i386] | 81 chromeos-acpi [i386] |
| 81 chromeos-chrome | 82 chromeos-chrome |
| 82 chromeos-cryptohome | 83 chromeos-cryptohome |
| 83 chromeos-init | 84 chromeos-init |
| 84 chromeos-installer | 85 chromeos-installer |
| 85 chromeos-flimflam | 86 chromeos-flimflam |
| 86 chromeos-libcros | 87 chromeos-libcros |
| 87 chromeos-login | 88 chromeos-login |
| 88 chromeos-minijail | 89 chromeos-minijail |
| 89 chromeos-metrics-collection | 90 chromeos-metrics-collection |
| 90 chromeos-metrics-daemon | 91 chromeos-metrics-daemon |
| 91 chromeos-monitor-reconfig | 92 chromeos-monitor-reconfig |
| 92 chromeos-pam-google | 93 chromeos-pam-google |
| 93 chromeos-pam-offline | 94 chromeos-pam-offline [!armel] |
| 94 chromeos-ply-image | 95 chromeos-ply-image [!armel] |
| 95 chromeos-screenlocker | 96 chromeos-screenlocker |
| 96 chromeos-theme | 97 chromeos-theme |
| 97 chromeos-wm | 98 chromeos-wm |
| 98 chromeos-wpasupplicant | 99 chromeos-wpasupplicant |
| 99 memento-updater | 100 memento-updater |
| 100 | 101 |
| 101 # For wireless support | 102 # For wireless support |
| 102 iw | 103 iw |
| 103 libnl1 | 104 libnl1 |
| 104 linux-firmware | 105 linux-firmware |
| (...skipping 17 matching lines...) Expand all Loading... |
| 122 # For collecting metrics | 123 # For collecting metrics |
| 123 time | 124 time |
| 124 | 125 |
| 125 # Install the chromeos build of upstart | 126 # Install the chromeos build of upstart |
| 126 upstart | 127 upstart |
| 127 | 128 |
| 128 # Listed as a recommendation rather than dependency by chromeos-chrome to | 129 # Listed as a recommendation rather than dependency by chromeos-chrome to |
| 129 # make it easier to replace it with different versions, but included here | 130 # make it easier to replace it with different versions, but included here |
| 130 # to make sure that we always include it in images. | 131 # to make sure that we always include it in images. |
| 131 flashplugin-installer [!armel] | 132 flashplugin-installer [!armel] |
| OLD | NEW |