1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
case "$MODE" in
finalization)
if [ -z "$KERNEL_ARCH" ]; then
case $ARCH in
amd64)
KERNEL_ARCH="generic"
;;
i386)
# We ideally want non-PAE but install media
# doesn't have it, so use PAE in that case
chroot $ROOT apt-cache show linux-image-generic 2> /dev/null > /dev/null && \
KERNEL_ARCH="generic" || KERNEL_ARCH="generic-pae"
;;
sparc)
KERNEL_ARCH="$(uname -m)"
;;
armel|armhf)
KERNEL_ARCH="generic"
;;
*)
KERNEL_ARCH="$ARCH"
;;
esac
fi
LATE_PACKAGES="$LATE_PACKAGES linux-image-$KERNEL_ARCH"
;;
esac
|