]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blob - pakfire/patches/0005-Allow-to-install-multiple-non-default-kernels.patch
pakfire: Sync to upstream version.
[people/ms/ipfire-3.x.git] / pakfire / patches / 0005-Allow-to-install-multiple-non-default-kernels.patch
1 From acf9ff3a740f37550287b4e263e6d7e76cef3e36 Mon Sep 17 00:00:00 2001
2 From: Michael Tremer <michael.tremer@ipfire.org>
3 Date: Sun, 22 Apr 2012 14:42:37 +0200
4 Subject: [PATCH 5/8] Allow to install multiple non-default kernels.
5
6 ---
7 python/pakfire/constants.py | 9 ++++++++-
8 1 files changed, 8 insertions(+), 1 deletions(-)
9
10 diff --git a/python/pakfire/constants.py b/python/pakfire/constants.py
11 index 0899dd0..44d1d02 100644
12 --- a/python/pakfire/constants.py
13 +++ b/python/pakfire/constants.py
14 @@ -184,7 +184,14 @@ end
15 PACKAGE_INFO_DESCRIPTION_LINE = PACKAGE_INFO_DEPENDENCY_LINE = "\t\t%s"
16
17 # XXX make this configurable in pakfire.conf
18 -PAKFIRE_MULTIINSTALL = ["kernel", "kernel-PAE",]
19 +PAKFIRE_MULTIINSTALL = [
20 + "kernel",
21 + "kernel-kirkwood",
22 + "kernel-legacy",
23 + "kernel-omap",
24 + "kernel-versatile",
25 + "kernel-devel",
26 +]
27
28 SCRIPTLET_INTERPRETER = "/bin/sh"
29 SCRIPTLET_TIMEOUT = 60 * 15
30 --
31 1.7.7.6
32