| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 chromeos-init | 97 chromeos-init |
| 98 chromeos-installer | 98 chromeos-installer |
| 99 chromeos-flimflam | 99 chromeos-flimflam |
| 100 chromeos-libcros | 100 chromeos-libcros |
| 101 chromeos-login | 101 chromeos-login |
| 102 chromeos-minijail | 102 chromeos-minijail |
| 103 chromeos-metrics-collection | 103 chromeos-metrics-collection |
| 104 chromeos-metrics-daemon | 104 chromeos-metrics-daemon |
| 105 chromeos-monitor-reconfig | 105 chromeos-monitor-reconfig |
| 106 chromeos-pam-google | 106 chromeos-pam-google |
| 107 chromeos-pam-offline |
| 107 chromeos-ply-image | 108 chromeos-ply-image |
| 108 chromeos-screenlocker | 109 chromeos-screenlocker |
| 109 chromeos-theme | 110 chromeos-theme |
| 110 chromeos-wm | 111 chromeos-wm |
| 111 chromeos-wpasupplicant | 112 chromeos-wpasupplicant |
| 112 memento-updater | 113 memento-updater |
| 113 | 114 |
| 114 # For wireless support | 115 # For wireless support |
| 115 iw | 116 iw |
| 116 libnl1 | 117 libnl1 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 130 # For collecting metrics | 131 # For collecting metrics |
| 131 time | 132 time |
| 132 | 133 |
| 133 # Install the chromeos build of upstart | 134 # Install the chromeos build of upstart |
| 134 upstart | 135 upstart |
| 135 | 136 |
| 136 # Listed as a recommendation rather than dependency by chromeos-chrome to | 137 # Listed as a recommendation rather than dependency by chromeos-chrome to |
| 137 # make it easier to replace it with different versions, but included here | 138 # make it easier to replace it with different versions, but included here |
| 138 # to make sure that we always include it in images. | 139 # to make sure that we always include it in images. |
| 139 flashplugin-installer | 140 flashplugin-installer |
| OLD | NEW |