View difference between Paste ID: cBxa1BB2 and
SHOW: | | - or go back to the newest paste.
1-
1+
#!/usr/bin/python
2
3
# the Linux version to build
4
LINUX_VERSION = "2.6.32.41"
5
6
# the Linux download mirror
7
LINUX_MIRROR = "http://www.il.kernel.org/pub/linux/kernel/v2.6/longterm/v2.6.32"
8
9
# the file name of the Linux sources tarball
10
LINUX_SOURCES_TARBALL = "linux-%s.tar.bz2" % LINUX_VERSION
11
12
# True to deblob the kernel, otherwise False
13
LINUX_LIBRE = True
14
15
# the Linux-libre mirror to download the scripts from
16
LINUX_LIBRE_MIRROR = "http://www.fsfla.org/svn/fsfla/software/linux-libre/scripts"
17
18
# the Aufs version to use
19
AUFS_VERSION = "2.1"
20
21
# the package name suffix
22
PACKAGE_NAME_SUFFIX = "lts-libre-bfs"