blob: acb3711a7d45050c826f8ffff88d4069098d2434 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
KERNEL_VERSION=2.6.34-ZEN-g8d23351-dirty
post_install () {
echo ">"
echo "> Updating module dependencies. Please wait ..."
depmod -v ${KERNEL_VERSION} > /dev/null 2>&1
echo ">"
echo "> Generating initramfs, using mkinitcpio. Please wait..."
echo ">"
/sbin/mkinitcpio -p kernel26-zen
}
post_upgrade() {
post_install
}
op=$1
shift
$op $*
#EOF
|