New module for correctly installing kernel headers, kernel source, kernel headers for libc, etc..

This commit is contained in:
Ozan Çağlayan
2009-04-08 17:36:00 +00:00
parent d4404bc285
commit 9e5b5ec501
+56
View File
@@ -0,0 +1,56 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2009, TUBITAK/UEKAE
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option)
# any later version.
#
# Please read the COPYING file.
# Standard Python Modules
import os
import gettext
__trans = gettext.translation('pisi', fallback=True)
_ = __trans.ugettext
# Pisi Modules
import pisi.context as ctx
# ActionsAPI Modules
import pisi.actionsapi
import pisi.actionsapi.get as get
from pisi.actionsapi.shelltools import system
from pisi.actionsapi.shelltools import makedirs
from pisi.actionsapi.shelltools import copytree
def installHeaders(*additionalDirs):
pruned = ["include", "scripts"]
wanted = ["Makefile*", "Kconfig*", "Kbuild*", "*.sh", "*.pl", "*.lds"]
destination = "%s/usr/src/linux-headers" % get.installDIR()
makedirs(destination)
# First create the skel
find_cmd = "find . -path %s -prune -o -type f \( -name %s \) -print" % \
(
" -prune -o -path ".join(["'./%s/*'" % l for l in pruned]),
" -o -name ".join(["'%s'" % k for k in wanted])
) + " | cpio -pd --preserve-modification-time %s" % destination
system(find_cmd)
# Install additional headers passed by actions.py
for d in additionalDirs:
system("cp -a %s/*.h %s/%s" % (destination, d))
# Install remaining headers
system("cp -a scripts include %s" % destination)
def installSource():
pass
def installDocumentation():
pass