blob: 646730a12327523f6945153d60e4a36f1ad0e7ca (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# kernel.uselect mephx.x@gmail.com
module kernel {
description "Kernel Switcher"
version "0.1"
author "mephx.x@gmail.com"
} kernel
system action src {
description "Change current kernel source target"
type sym
sym linux /usr/src/linux /usr/src/ (.*)-(.*$) *
} src
system action boot {
description "Change current kernel boot target"
type sym
sym vmlinuz /boot/vmlinuz /boot/ vmlinuz-(.*$) *
} boot
|