+branch/ubiquity

« back to all changes in this revision

Viewing changes to scripts/check-kernels

  • Committer: Colin Watson
  • Date: 2006-04-21 11:39:15 UTC
  • Revision ID: colin.watson@canonical.com-20060421113915-7d2d711cd6afc4f5
* Rename from espresso to ubiquity, to better suggest an association with
  Ubuntu. Log output now written to /var/log/installer/syslog rather than
  using the package name.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
MACHINE="$(uname -m)"
11
11
NUMCPUS=
12
12
 
13
 
if [ -f /usr/lib/espresso/base-installer/kernel.sh ]; then
14
 
        . /usr/lib/espresso/base-installer/kernel.sh
 
13
if [ -f /usr/lib/ubiquity/base-installer/kernel.sh ]; then
 
14
        . /usr/lib/ubiquity/base-installer/kernel.sh
15
15
else
16
16
        exit 0
17
17
fi
31
31
        # We must be wrong. After all, we got this far ...
32
32
        echo 'No usable kernel found; assuming foreign package naming' >&2
33
33
else
34
 
        mkdir -p /var/lib/espresso
 
34
        mkdir -p /var/lib/ubiquity
35
35
        for kernel in $incompatible; do
36
 
                echo "$kernel" >> /var/lib/espresso/remove-kernels
 
36
                echo "$kernel" >> /var/lib/ubiquity/remove-kernels
37
37
        done
38
38
fi
39
39