builddeb (8dd06ef34b6e2f41b29fbf5fc1663780f2524285) | builddeb (596b0474d3d9b1242eab713f84d8873f9887d980) |
---|---|
1#!/bin/sh 2# 3# builddeb 1.3 4# Copyright 2003 Wichert Akkerman <wichert@wiggy.net> 5# 6# Simple script to generate a deb package for a Linux kernel. All the 7# complexity of what to do with a kernel after it is installed or removed 8# is left to other scripts and packages: they can install scripts in the --- 41 unchanged lines hidden (view full) --- 50 pdir=$1 51 52 rm -rf $pdir 53 54 ( 55 cd $srctree 56 find . arch/$SRCARCH -maxdepth 1 -name Makefile\* 57 find include scripts -type f -o -type l | 1#!/bin/sh 2# 3# builddeb 1.3 4# Copyright 2003 Wichert Akkerman <wichert@wiggy.net> 5# 6# Simple script to generate a deb package for a Linux kernel. All the 7# complexity of what to do with a kernel after it is installed or removed 8# is left to other scripts and packages: they can install scripts in the --- 41 unchanged lines hidden (view full) --- 50 pdir=$1 51 52 rm -rf $pdir 53 54 ( 55 cd $srctree 56 find . arch/$SRCARCH -maxdepth 1 -name Makefile\* 57 find include scripts -type f -o -type l |
58 find arch/$SRCARCH -name module.lds -o -name Kbuild.platforms -o -name Platform | 58 find arch/$SRCARCH -name Kbuild.platforms -o -name Platform |
59 find $(find arch/$SRCARCH -name include -o -name scripts -type d) -type f 60 ) > debian/hdrsrcfiles 61 62 { 63 if is_enabled CONFIG_STACK_VALIDATION; then 64 echo tools/objtool/objtool 65 fi 66 --- 162 unchanged lines hidden --- | 59 find $(find arch/$SRCARCH -name include -o -name scripts -type d) -type f 60 ) > debian/hdrsrcfiles 61 62 { 63 if is_enabled CONFIG_STACK_VALIDATION; then 64 echo tools/objtool/objtool 65 fi 66 --- 162 unchanged lines hidden --- |