| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 | 91 |
| 92 # For wireless support | 92 # For wireless support |
| 93 iw | 93 iw |
| 94 libnl1 | 94 libnl1 |
| 95 linux-firmware | 95 linux-firmware |
| 96 | 96 |
| 97 # For IBus | 97 # For IBus |
| 98 ibus | 98 ibus |
| 99 ibus-anthy | 99 ibus-anthy |
| 100 ibus-chewing | 100 ibus-chewing |
| 101 ibus-m17n |
| 101 ibus-gtk | 102 ibus-gtk |
| 102 libibus1 | 103 libibus1 |
| 103 python-ibus | 104 python-ibus |
| 104 | 105 |
| 105 # For partitioning (GPT format) | 106 # For partitioning (GPT format) |
| 106 gptpart | 107 gptpart |
| OLD | NEW |