| 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 |
| 11 | 11 |
| 12 # TODO: Something broke in the dependencies so we need to manually | 12 # TODO: Something broke in the dependencies so we need to manually |
| 13 # ensure that we have some X input packages | 13 # ensure that we have some X input packages |
| 14 xserver-xorg-input-kbd | 14 xserver-xorg-input-kbd |
| 15 xserver-xorg-input-mouse | 15 xserver-xorg-input-mouse |
| 16 xserver-xorg-input-synaptics | 16 xserver-xorg-input-synaptics |
| 17 xserver-xorg-video-intel | 17 xserver-xorg-video-intel |
| 18 | 18 |
| 19 # xserver | 19 # xserver |
| 20 xserver-xorg | 20 xserver-xorg |
| 21 | 21 |
| 22 # For creating tokens that allow user binaries to communicate with the xserver. | 22 # For creating tokens that allow user binaries to communicate with the xserver. |
| 23 xauth | 23 xauth |
| 24 | 24 |
| 25 # Some things freak out if the hostname is not set. |
| 26 hostname |
| 27 |
| 25 # Newer packages of chromium-browser don't seem to have libgconf2 as | 28 # Newer packages of chromium-browser don't seem to have libgconf2 as |
| 26 # part of their depends, but chrome won't run without. | 29 # part of their depends, but chrome won't run without. |
| 27 libgconf2-4 | 30 libgconf2-4 |
| 28 | 31 |
| 29 # DRI drivers are needed to run the clutter-based WM. | 32 # DRI drivers are needed to run the clutter-based WM. |
| 30 libgl1-mesa-dri | 33 libgl1-mesa-dri |
| 31 | 34 |
| 32 # TODO: Move into a developer addon list. These should all be | |
| 33 # optional. For now, install these useful packages until things are farther | |
| 34 # along in development. | |
| 35 apt | |
| 36 bootchart | |
| 37 bsdutils | |
| 38 bzip2 | |
| 39 diff | |
| 40 gnupg # needed by apt-get to verify signatures | |
| 41 hostname | |
| 42 ifupdown | |
| 43 iproute | |
| 44 iputils-ping | |
| 45 less | |
| 46 ncurses-base | |
| 47 net-tools | |
| 48 openssh-server | |
| 49 tar | |
| 50 vim-tiny | |
| 51 x11-utils | |
| 52 xterm | |
| 53 | |
| 54 # Fonts | 35 # Fonts |
| 55 ttf-dejavu | 36 ttf-dejavu |
| 56 ttf-droid | 37 ttf-droid |
| 57 ttf-sil-abyssinica | 38 ttf-sil-abyssinica |
| 58 | 39 |
| 59 # For power events (needed specifically to trap lid-close) | 40 # For power events (needed specifically to trap lid-close) |
| 60 acpid | 41 acpid |
| 61 | 42 |
| 62 # For power management (battery monitor) | 43 # For power management (battery monitor) |
| 63 devicekit-power | 44 devicekit-power |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 # For collecting metrics | 111 # For collecting metrics |
| 131 time | 112 time |
| 132 | 113 |
| 133 # Install the chromeos build of upstart | 114 # Install the chromeos build of upstart |
| 134 upstart | 115 upstart |
| 135 | 116 |
| 136 # Listed as a recommendation rather than dependency by chromeos-chrome to | 117 # Listed as a recommendation rather than dependency by chromeos-chrome to |
| 137 # make it easier to replace it with different versions, but included here | 118 # make it easier to replace it with different versions, but included here |
| 138 # to make sure that we always include it in images. | 119 # to make sure that we always include it in images. |
| 139 flashplugin-installer | 120 flashplugin-installer |
| OLD | NEW |