OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 # This file contains the list of packages we install on the production | |
6 # machines (ie, end users). One package per line | |
7 | |
8 # To read these into a line in a script, do: | |
9 # PKGS=`cat $PACKAGE_LIST_FILE | grep -v ' *#' | grep -v '^ *$' | tr '\n' ' '` | |
10 # change "' '" to "','" for a comma separated list | |
11 | |
12 # TODO: Something broke in the dependencies so we need to manually | |
13 # ensure that we have some X input packages | |
14 xserver-xorg-input-kbd | |
15 xserver-xorg-input-mouse | |
16 xserver-xorg-input-synaptics | |
17 xserver-xorg-video-intel [i386] | |
18 | |
19 # xserver | |
20 xserver-xorg | |
21 | |
22 # For creating tokens that allow user binaries to communicate with the xserver. | |
23 xauth | |
24 | |
25 # Needed by the developer kit. | |
26 # TODO: Remove these from the prod list eventually but keep in debug. | |
27 apt | |
28 tar | |
29 | |
30 # Some things freak out if the hostname is not set. | |
31 hostname | |
32 | |
33 # Newer packages of chromium-browser don't seem to have libgconf2 as | |
34 # part of their depends, but chrome won't run without. | |
35 libgconf2-4 | |
36 | |
37 # DRI drivers are needed to run the clutter-based WM. | |
38 libgl1-mesa-dri | |
39 | |
40 # Fonts | |
41 ttf-dejavu | |
42 ttf-droid | |
43 ttf-sil-abyssinica | |
44 | |
45 # For power events (needed specifically to trap lid-close) | |
46 acpid [i386] | |
47 | |
48 # For power management (battery monitor) | |
49 devicekit-power | |
50 | |
51 # For dhcp | |
52 dhcp3-client | |
53 | |
54 # For system logging | |
55 rsyslog | |
56 | |
57 # For mounting | |
58 devicekit-disks | |
59 policykit-1 | |
60 | |
61 # For shutdown to cleanly unmount the stateful partition | |
62 lsof | |
63 | |
64 # For sound (needed specifically for volume adjustment) | |
65 alsa-utils | |
66 | |
67 # For firewalling | |
68 iptables | |
69 | |
70 # For setting time | |
71 ntp | |
72 | |
73 # For encrypted home directories | |
74 dmsetup | |
75 libhx18 | |
76 libpam-mount | |
77 e4fsprogs-git | |
78 | |
79 # Chrome OS packages; keep alphabetized | |
80 chromeos-acpi [i386] | |
81 chromeos-chrome | |
82 chromeos-cryptohome | |
83 chromeos-init | |
84 chromeos-installer | |
85 chromeos-flimflam | |
86 chromeos-libcros | |
87 chromeos-login | |
88 chromeos-minijail | |
89 chromeos-metrics-collection | |
90 chromeos-metrics-daemon | |
91 chromeos-monitor-reconfig | |
92 chromeos-pam-google | |
93 chromeos-pam-offline | |
94 chromeos-ply-image [!armel] | |
95 chromeos-screenlocker | |
96 chromeos-theme | |
97 chromeos-wm | |
98 chromeos-wpasupplicant | |
99 memento-updater | |
100 | |
101 # For wireless support | |
102 iw | |
103 libnl1 | |
104 linux-firmware | |
105 | |
106 # For 3g support | |
107 ppp | |
108 modemmanager | |
109 eject | |
110 | |
111 # For IBus | |
112 ibus | |
113 ibus-anthy | |
114 ibus-chewing | |
115 ibus-hangul | |
116 ibus-m17n | |
117 m17n-db | |
118 ibus-gtk | |
119 | |
120 # For partitioning (GPT format) | |
121 gptpart | |
122 | |
123 # For collecting metrics | |
124 time | |
125 | |
126 # Install the chromeos build of upstart | |
127 upstart | |
128 | |
129 # Listed as a recommendation rather than dependency by chromeos-chrome to | |
130 # make it easier to replace it with different versions, but included here | |
131 # to make sure that we always include it in images. | |
132 flashplugin-installer [!armel] | |
OLD | NEW |