rev |
line source |
pankso@3
|
1 # SliTaz package receipt.
|
pankso@3
|
2
|
pankso@3
|
3 PACKAGE="linux"
|
pascal@20261
|
4 VERSION="3.16.55"
|
pankso@3
|
5 CATEGORY="base-system"
|
pankso@3
|
6 SHORT_DESC="The Linux kernel and modules."
|
pankso@3864
|
7 MAINTAINER="devel@slitaz.org"
|
pascal@14657
|
8 LICENSE="GPL2"
|
pankso@15855
|
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
|
pankso@3
|
10 WEB_SITE="http://www.kernel.org/"
|
pascal@20261
|
11 WGET_URL="https://cdn.kernel.org/pub/linux/kernel/v${VERSION%%.*}.x/$TARBALL"
|
pankso@12803
|
12 HOST_ARCH="i486 arm x86_64"
|
pankso@12803
|
13
|
pankso@15855
|
14 DEPENDS="kmod"
|
pascal@20271
|
15 BUILD_DEPENDS="perl git xz lzma patch kmod uclibc-cross-compiler-x86_64 bc \
|
pascal@20271
|
16 sysfsutils-dev libtool glib-dev libwrap libwrap-dev udev-dev"
|
pankso@12824
|
17
|
pankso@15855
|
18 #
|
pankso@15855
|
19 # The Linux receipt handle cross compilation. For x86_64 we actually use
|
pankso@15855
|
20 # the uclibc-cross-compiler-x86_64 and for ARM we use a real cross env.
|
pankso@15855
|
21 # Please discuss any change and keep it simple, dont play with VERSION
|
pankso@15855
|
22 # string or Kernel SUBLEVEL because depmod and Pankso dont like that!
|
pankso@15855
|
23 #
|
pankso@15855
|
24 # The receipt also handle some cook options for faster build:
|
pankso@15855
|
25 # --nox64 : Skip the x86_64 cross compilation
|
pankso@15855
|
26 # --nonomods : Skip bzImage without modules build
|
pankso@15855
|
27 #
|
pankso@12812
|
28
|
pankso@12803
|
29 # Aufs enable chroot
|
pascal@14223
|
30 AUFS_NOT_RAMFS="uclibc-cross-compiler-x86_64 is not compatible with aufs+tmpfs 8("
|
pankso@3
|
31
|
pankso@12824
|
32 # Handle multiarch compilation. Less bdeps when cross-compiling for ARM
|
pankso@12803
|
33 case "$ARCH" in
|
pankso@15855
|
34 arm) BUILD_DEPENDS="xz" ;;
|
pankso@12824
|
35 x86_64) BUILD_DEPENDS="xz" ;;
|
pankso@12824
|
36 esac
|
pankso@12824
|
37
|
pankso@15855
|
38 # Handle multiarch installation. ARM use Busybox modutils, so avoid any
|
pankso@15855
|
39 # deps on kmod. SLITAZ_ARCH can have also custom post_install commands
|
pankso@15921
|
40 if [ -f $root/etc/slitaz/slitaz.conf ]; then
|
pankso@15921
|
41 . $root/etc/slitaz/slitaz.conf
|
pankso@15921
|
42 case "$SLITAZ_ARCH" in
|
pankso@15921
|
43 arm) DEPENDS="" ;;
|
pankso@15921
|
44 esac
|
pankso@15921
|
45 fi
|
pankso@12824
|
46
|
pascal@17366
|
47 install_module_headers()
|
pascal@17366
|
48 {
|
pascal@17366
|
49 local path
|
pascal@17366
|
50 path=usr/src/linux-$KVERSION
|
pascal@17366
|
51 mkdir -p $1/lib/modules/$KVERSION
|
pascal@17366
|
52 ln -sf /$path $1/lib/modules/$KVERSION/build
|
pascal@17366
|
53 install -D -m644 $src/Makefile \
|
pascal@17366
|
54 $1/$path/Makefile
|
pascal@17366
|
55 install -D -m644 $src/kernel/Makefile \
|
pascal@17366
|
56 $1/$path/kernel/Makefile
|
pascal@17366
|
57 install -D -m644 $src/.config \
|
pascal@17366
|
58 $1/$path/.config
|
pascal@17366
|
59 mkdir -p $1/$path/include
|
pascal@17366
|
60
|
pascal@20261
|
61 cp -a $src/include/* $1/$path/include/
|
pascal@20261
|
62 rm -f $1/$path/include/Kbuild
|
pascal@17366
|
63
|
pascal@17366
|
64 # copy arch includes for external modules
|
pascal@17366
|
65 mkdir -p $1/$path/arch/x86
|
pascal@17366
|
66 cp -a $src/arch/x86/include $1/$path/arch/x86/
|
pascal@17366
|
67
|
pascal@17366
|
68 # copy files necessary for later builds, like nvidia and vmware
|
pascal@17369
|
69 cp -a $src/Module.symvers $1/$path/Module.symvers
|
pascal@17366
|
70 cp -a $src/scripts $1/$path
|
pascal@17366
|
71 # fix permissions on scripts dir
|
pascal@17366
|
72 chmod og-w -R $1/$path/scripts
|
pascal@17366
|
73 mkdir -p $1/$path/.tmp_versions
|
pascal@17366
|
74
|
pascal@17366
|
75 mkdir -p $1/$path/arch/x86/kernel
|
pascal@17366
|
76 cp -a $src/arch/x86/Makefile $1/$path/arch/x86/
|
pascal@17366
|
77 cp -a $src/arch/x86/Makefile_32.cpu $1/$path/arch/x86/
|
pascal@17366
|
78 cp -a $src/arch/x86/kernel/asm-offsets.s $1/$path/arch/x86/kernel/
|
pascal@17366
|
79
|
pascal@17366
|
80 # add headers for lirc package
|
pascal@20261
|
81 mkdir -p $1/$path/drivers/media
|
pascal@20261
|
82 ( cd $src/drivers/media ; find i2c -name '*.h' | cpio -o -H newc ) | \
|
pascal@20261
|
83 ( cd $1/$path/drivers/media ; cpio -idmu )
|
pascal@17366
|
84
|
pascal@17366
|
85 # add docbook makefile
|
pascal@17366
|
86 install -D -m644 $src/Documentation/DocBook/Makefile \
|
pascal@17366
|
87 $1/$path/Documentation/DocBook/Makefile
|
pascal@17366
|
88
|
pascal@17366
|
89 # add dm headers
|
pascal@17366
|
90 mkdir -p $1/$path/drivers/md
|
pascal@17366
|
91 cp -a $src/drivers/md/*.h $1/$path/drivers/md
|
pascal@17366
|
92
|
pascal@17366
|
93 # add inotify.h
|
pascal@17366
|
94 mkdir -p $1/$path/include/linux
|
pascal@17366
|
95 cp -a $src/include/linux/inotify.h $1/$path/include/linux/
|
pascal@17366
|
96
|
pascal@17366
|
97 # add wireless headers
|
pascal@17366
|
98 mkdir -p $1/$path/net/mac80211/
|
pascal@17366
|
99 cp -a $src/net/mac80211/*.h $1/$path/net/mac80211/
|
pascal@17366
|
100
|
pascal@17366
|
101 # add dvb headers for external modules
|
pascal@17366
|
102 # in reference to:
|
pascal@17366
|
103 # http://bugs.archlinux.org/task/9912
|
pascal@20261
|
104 mkdir -p $1/$path/drivers/media/dvb-core
|
pascal@20261
|
105 cp -a $src/drivers/media/dvb-core/*.h $1/$path/drivers/media/dvb-core/
|
pascal@17366
|
106
|
pascal@17366
|
107 # add dvb headers for external modules
|
pascal@17366
|
108 # in reference to:
|
pascal@17366
|
109 # http://bugs.archlinux.org/task/11194
|
pascal@17366
|
110 if [ -d $src/include/config/dvb/ ]; then
|
pascal@17366
|
111 mkdir -p $1/$path/include/config/dvb/
|
pascal@17366
|
112 cp $src/include/config/dvb/*.h $1/$path/include/config/dvb/
|
pascal@17366
|
113 fi
|
pascal@17366
|
114
|
pascal@17366
|
115 # add dvb headers for http://mcentral.de/hg/~mrec/em28xx-new
|
pascal@17366
|
116 # in reference to:
|
pascal@17366
|
117 # http://bugs.archlinux.org/task/13146
|
pascal@20261
|
118 mkdir -p $1/$path/drivers/media/dvb-frontends/
|
pascal@20261
|
119 cp -a $src/drivers/media/dvb-frontends/lgdt330x.h $1/$path/drivers/media/dvb-frontends/
|
pascal@20261
|
120 cp -a $src/drivers/media/i2c/msp3400-driver.h $1/$path/drivers/media/dvb-frontends/
|
pascal@17366
|
121
|
pascal@17366
|
122 # add dvb headers
|
pascal@17366
|
123 # in reference to:
|
pascal@17366
|
124 # http://bugs.archlinux.org/task/20402
|
pascal@20261
|
125 mkdir -p $1/$path/drivers/media/usb/dvb-usb
|
pascal@20261
|
126 cp -a $src/drivers/media/usb/dvb-usb/*.h $1/$path/drivers/media/usb/dvb-usb/
|
pascal@20261
|
127 mkdir -p $1/$path/drivers/media/dvb-frontends
|
pascal@20261
|
128 cp -a $src/drivers/media/dvb-frontends/*.h $1/$path/drivers/media/dvb-frontends/
|
pascal@20261
|
129 mkdir -p $1/$path/drivers/media/tuners
|
pascal@20261
|
130 cp -a $src/drivers/media/tuners/*.h $1/$path/drivers/media/tuners/
|
pascal@17366
|
131
|
pascal@17366
|
132 # add xfs and shmem for aufs building
|
pascal@17366
|
133 mkdir -p $1/$path/fs/xfs
|
pascal@17366
|
134 mkdir -p $1/$path/mm
|
pascal@17366
|
135 cp -a $src/fs/xfs/xfs_sb.h $1/$path/fs/xfs/xfs_sb.h
|
pascal@20261
|
136 cp -a $src/fs/*.h $1/$path/fs/
|
pascal@17366
|
137
|
pascal@17366
|
138 # copy in Kconfig files
|
pascal@17366
|
139 for i in $(find . -name "Kconfig*"); do
|
pascal@17366
|
140 mkdir -p $1/$path/$(echo $i | sed 's|/Kconfig.*||')
|
pascal@17366
|
141 cp -a $src/$i $1/$path/$i
|
pascal@17366
|
142 done
|
pascal@17366
|
143
|
pascal@17366
|
144 chown -R root.root $1/$path
|
pascal@17366
|
145 find $1/$path -type d -exec chmod 755 {} \;
|
pascal@17366
|
146 # remove unneeded architectures
|
pascal@17366
|
147 rm -rf $1/$path/arch/{alpha,arm,arm26,avr32,blackfin,cris,frv,h8300,ia64,m32r,m68k,m68knommu,mips,microblaze,mn10300,parisc,powerpc,ppc,s390,sh,sh64,sparc,sparc64,um,v850,xtensa}
|
pascal@17366
|
148 }
|
pascal@17366
|
149
|
pankso@3
|
150 # Rules to configure and make the package.
|
pankso@3
|
151 compile_rules()
|
pankso@3
|
152 {
|
pankso@15921
|
153 if [ -f "/usr/share/boot/initrd" ]; then
|
pankso@15921
|
154 cp /usr/share/boot/initrd initrd.cpio
|
pankso@15921
|
155 fi
|
pankso@12803
|
156
|
pankso@15855
|
157 # Handle cross compilation
|
pankso@12803
|
158 case "$ARCH" in
|
pankso@12803
|
159 arm)
|
pankso@15855
|
160 echo "Compiling: $ARCH Kernel"
|
pankso@12824
|
161 make mrproper
|
pankso@12824
|
162 patch -Np1 < $stuff/$ARCH/linux-arm.patch || exit 1
|
pankso@12824
|
163 cp -f $stuff/$ARCH/linux-arm.config .config
|
pascal@15733
|
164 yes '' | make ARCH=$ARCH oldconfig
|
pankso@12803
|
165 make ARCH=$ARCH CROSS_COMPILE=${HOST_SYSTEM}- bzImage &&
|
pankso@12803
|
166 make ARCH=$ARCH CROSS_COMPILE=${HOST_SYSTEM}- modules &&
|
pankso@12803
|
167 make ARCH=$ARCH CROSS_COMPILE=${HOST_SYSTEM}- \
|
pankso@12803
|
168 INSTALL_MOD_PATH=$DESTDIR modules_install &&
|
pankso@12803
|
169 mkdir -p $DESTDIR/boot &&
|
pankso@12824
|
170 cp -a arch/arm/boot/zImage \
|
pankso@12803
|
171 $DESTDIR/boot/linux-$VERSION-slitaz-$ARCH
|
pankso@15921
|
172 #$stuff/gztazmod.sh $DESTDIR/lib/modules/$VERSION-slitaz
|
pankso@12803
|
173 return 0 ;;
|
pankso@12803
|
174 x86_64)
|
pankso@12803
|
175 echo "TODO: Maybe use default ? But cross compile in x86_64 chroot"
|
pankso@12803
|
176 echo "so we can remove the 64 build by uclibc-cross-compiler-x86_64"
|
pankso@12803
|
177 return 0 ;;
|
pankso@12803
|
178 esac
|
pankso@12803
|
179
|
pankso@15855
|
180 # Check for Aufs and get source/patches if needed
|
pankso@9731
|
181 echo "Checking for Aufs packages..."
|
pankso@15855
|
182 AUFSVER=$(grep ^VERSION= $WOK/aufs/receipt | cut -d "=" -f2 | sed -e 's/"//g')
|
pankso@15855
|
183 AUFSDIR="$WOK/aufs/source/aufs-${AUFSVER}"
|
pankso@15855
|
184 if [ ! -d "$AUFSDIR" ]; then
|
pankso@15855
|
185 [ ! -f "$SRC/aufs-${AUFSVER}.tar.bz2" ] && cook aufs --getsrc
|
pankso@12288
|
186 mkdir -p $WOK/aufs/source/
|
pankso@15855
|
187 echo "Extracting: aufs-${AUFSVER}.tar.bz2"
|
pankso@15855
|
188 tar xjf $SRC/aufs-${AUFSVER}.tar.bz2 -C $WOK/aufs/source/
|
pankso@9731
|
189 fi
|
pankso@15855
|
190
|
pankso@12285
|
191 echo "cook:linux" > $command
|
pankso@12285
|
192
|
pankso@9731
|
193 echo "Copying Aufs files and patches..."
|
slaxemulator@7297
|
194 cp -a $AUFSDIR/Documentation $AUFSDIR/fs $AUFSDIR/include $src
|
pascal@20261
|
195
|
pascal@20261
|
196 # Use fixed patchs from stuff
|
pankso@12285
|
197 cp -a $AUFSDIR/aufs3-*.patch $stuff
|
pankso@12285
|
198
|
pankso@15855
|
199 # SliTaz db stuff
|
pankso@15855
|
200 [ -d $WOK/$PACKAGE/source/slitaz ] && rm -rf $WOK/$PACKAGE/source/slitaz
|
pankso@12285
|
201 mkdir -p $WOK/$PACKAGE/source/slitaz
|
pankso@12290
|
202 echo "$WGET_URL" > $WOK/$PACKAGE/source/slitaz/url
|
pankso@12285
|
203 cp $stuff/gztazmod.sh $stuff/list_modules.sh $WOK/$PACKAGE/source/slitaz
|
pankso@12285
|
204 cp $stuff/bootloader.sh $WOK/$PACKAGE/source/slitaz
|
pankso@12803
|
205
|
pankso@5640
|
206 # Apply patches
|
pankso@9731
|
207 echo "Applying patches..."
|
pascal@521
|
208 while read patch_file; do
|
pankso@12285
|
209 echo "$patch_file" >> $WOK/$PACKAGE/source/slitaz/patches
|
pankso@12285
|
210 cp $stuff/$patch_file $WOK/$PACKAGE/source/slitaz
|
pascal@1442
|
211 if [ -f done.$patch_file ]; then
|
pankso@15855
|
212 echo "Skipping $patch_file" && continue
|
pascal@1442
|
213 fi
|
pascal@521
|
214 echo "Apply $patch_file"
|
pankso@15855
|
215 patch -p1 < $WOK/$PACKAGE/source/slitaz/$patch_file || return 1
|
pascal@1442
|
216 touch done.$patch_file
|
pascal@521
|
217 done <<EOT
|
pankso@12285
|
218 $PACKAGE-diff.u
|
pankso@12285
|
219 $PACKAGE-freeinitrd.u
|
pascal@14759
|
220 $PACKAGE-subroot.u
|
pascal@17267
|
221 $PACKAGE-romfs.u
|
pankso@12285
|
222 aufs3-base.patch
|
pankso@12285
|
223 aufs3-standalone.patch
|
pankso@12285
|
224 aufs3-loopback.patch
|
mojo@15707
|
225 aufs3-mmap.patch
|
pascal@521
|
226 EOT
|
pankso@15855
|
227
|
pankso@15855
|
228 # Mrproper and lguest
|
pankso@15855
|
229 echo "Make kernel proper and then build lguest..."
|
pankso@3864
|
230 make mrproper
|
pascal@20261
|
231 cd tools/lguest
|
pankso@15855
|
232 make lguest || return 1
|
pascal@20271
|
233
|
pascal@20271
|
234 echo "Build usbip..."
|
pascal@20271
|
235 cd $src/drivers/staging/usbip/userspace
|
pascal@20271
|
236 ./autogen.sh
|
pascal@20271
|
237 ./configure CFLAGS="$CFLAGS -Wno-error=uninitialized" \
|
pascal@20271
|
238 --with-usbids-dir=/usr/share/misc \
|
pascal@20271
|
239 --mandir=/usr/share/man $CONFIGURE_ARGS &&
|
pascal@20271
|
240 make && DESTDIR=$DESTDIR/usbip install || return 1
|
pascal@20271
|
241
|
pankso@15855
|
242 cd $src
|
pankso@15855
|
243
|
pankso@15855
|
244 #
|
pankso@15855
|
245 # Arch x86_64: TODO have a real cross environment
|
pankso@15855
|
246 #
|
pankso@15870
|
247 if [ ! "$nox64" ]; then
|
pankso@15855
|
248 echo "Compiling: x86_64 Kernel"
|
pankso@15855
|
249
|
pankso@15855
|
250 # Build bzImage64 without modules first
|
pankso@15870
|
251 if [ ! "$nonomods" ]; then
|
pankso@15855
|
252 cp -f $stuff/$PACKAGE-slitaz.config64 .config
|
pankso@15855
|
253 sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config
|
pankso@15855
|
254 echo -e "\n* Configure bzImage64 without modules...\n"
|
pankso@15855
|
255 yes '' | make ARCH=x86_64 oldconfig
|
pankso@15855
|
256 echo -e "\n* Building bzImage64 without modules...\n"
|
pankso@15855
|
257 make -j 4 ARCH=x86_64 CROSS_COMPILE=uclibc-x86_64- bzImage || exit 1
|
pankso@15855
|
258 [ -d $DESTDIR ] || mkdir -p $DESTDIR/linux64
|
pankso@15855
|
259 mv arch/x86/boot/bzImage $DESTDIR/linux64
|
pankso@15855
|
260 mv System.map System.map-without-modules64
|
pascal@20169
|
261 mv vmlinux vmlinux-without-modules64
|
pascal@20169
|
262 mv .config config-without-modules64
|
pankso@15855
|
263 fi
|
pankso@15855
|
264
|
pankso@15855
|
265 # Build bzImage64 with modules
|
pankso@15855
|
266 cp -f $stuff/$PACKAGE-slitaz.config64 .config
|
pankso@15855
|
267 echo -e "\n* Configure bzImage64 with modules...\n"
|
pankso@15855
|
268 yes '' | make ARCH=x86_64 oldconfig
|
pankso@15855
|
269 echo -e "\n* Building bzImage64 with modules...\n"
|
pankso@15855
|
270 make -j 4 ARCH=x86_64 CROSS_COMPILE=uclibc-x86_64- bzImage &&
|
pankso@15855
|
271 make -j 4 ARCH=x86_64 CROSS_COMPILE=uclibc-x86_64- modules &&
|
pankso@15855
|
272 make ARCH=x86_64 INSTALL_MOD_PATH=$DESTDIR/linux64 modules_install &&
|
pankso@15855
|
273 make ARCH=x86_64 INSTALL_HDR_PATH=$DESTDIR/linux64/usr headers_install &&
|
pankso@15855
|
274 ln .config $WOK/$PACKAGE/source/slitaz/config64
|
pankso@15855
|
275 [ -s arch/x86/boot/bzImage ] || return 1
|
pankso@15855
|
276 mkdir -p $DESTDIR/linux64/boot 2> /dev/null
|
pascal@17031
|
277 mv arch/x86/boot/bzImage $DESTDIR/linux64/boot/vmlinuz-$VERSION-slitaz64
|
pascal@17366
|
278 KVERSION=$VERSION-slitaz64
|
pascal@17366
|
279 install_module_headers $DESTDIR/linux64
|
pankso@15855
|
280 ln System.map System.map-modules64
|
pascal@20169
|
281 ln vmlinux vmlinux-modules64
|
pankso@15855
|
282 ln Module.symvers Module.symvers-modules64
|
pascal@20170
|
283 cp .config config-modules64
|
pankso@15855
|
284 else
|
pankso@15855
|
285 echo "* Skipping: x86_64 Kernel..."
|
pankso@12285
|
286 fi
|
pankso@15855
|
287
|
pankso@12294
|
288 #
|
pankso@15855
|
289 # Linux Arch i386 - GCC arch i486
|
pankso@12294
|
290 #
|
pankso@15855
|
291 echo "Compiling: i386 Kernel..."
|
pankso@12803
|
292
|
pankso@12294
|
293 # Build bzImage without modules first
|
pankso@15870
|
294 if [ ! "$nonomods" ]; then
|
pankso@15855
|
295 cp -f $stuff/$PACKAGE-slitaz.config .config
|
pankso@15855
|
296 sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config
|
pankso@15855
|
297 echo -e "\n* Configure bzImage without modules...\n"
|
pankso@15855
|
298 yes '' | make ARCH=i386 oldconfig
|
pankso@15855
|
299 echo -e "\n* Building bzImage without modules...\n"
|
pascal@15670
|
300 make ARCH=i386 -j 4 bzImage || exit 1
|
pankso@15855
|
301 [ -d $DESTDIR ] || mkdir -p $DESTDIR
|
pankso@15855
|
302 mv arch/x86/boot/bzImage $DESTDIR
|
pankso@15855
|
303 mv System.map System.map-without-modules
|
pascal@20169
|
304 mv vmlinux vmlinux-without-modules
|
pascal@20169
|
305 mv .config config-without-modules
|
pankso@12294
|
306 fi
|
pankso@15855
|
307
|
pankso@12294
|
308 # Build bzImage with modules
|
pankso@12294
|
309 cp -f $stuff/$PACKAGE-slitaz.config .config
|
pankso@15855
|
310 echo -e "\n* Configure bzImage with modules...\n"
|
pascal@15733
|
311 yes '' | make ARCH=i386 oldconfig
|
pankso@12294
|
312 ln .config $WOK/$PACKAGE/source/slitaz/config
|
pankso@15855
|
313 echo -e "\n* Building bzImage with modules...\n"
|
pascal@15670
|
314 make ARCH=i386 -j 4 bzImage &&
|
pascal@15670
|
315 make ARCH=i386 -j 4 modules &&
|
pascal@15670
|
316 make ARCH=i386 INSTALL_MOD_PATH=$DESTDIR modules_install &&
|
pascal@15670
|
317 make ARCH=i386 INSTALL_HDR_PATH=$DESTDIR/usr headers_install &&
|
pankso@15855
|
318 [ -s arch/x86/boot/bzImage ] || return 1
|
pankso@12294
|
319 mkdir -p $DESTDIR/boot 2> /dev/null
|
pankso@12294
|
320 mv arch/x86/boot/bzImage $DESTDIR/boot/vmlinuz-$VERSION-slitaz
|
pascal@17366
|
321 KVERSION=$VERSION-slitaz
|
pascal@17366
|
322 install_module_headers $DESTDIR
|
pankso@15855
|
323
|
slaxemulator@6719
|
324 # Compress all modules.
|
pankso@15855
|
325 if [ -d "$DESTDIR/lib/modules/$VERSION-slitaz" ]; then
|
pankso@15855
|
326 $stuff/gztazmod.sh $DESTDIR/lib/modules/$VERSION-slitaz
|
pankso@15855
|
327 else
|
pankso@15855
|
328 return 1
|
pankso@15855
|
329 fi
|
pascal@17031
|
330 if [ -d "$DESTDIR/linux64/lib/modules/$VERSION-slitaz64" ]; then
|
pascal@17031
|
331 $stuff/gztazmod.sh $DESTDIR/linux64/lib/modules/$VERSION-slitaz64
|
pankso@15855
|
332 fi
|
pascal@7667
|
333 ln System.map System.map-modules
|
pascal@20169
|
334 ln vmlinux vmlinux-modules
|
pascal@7667
|
335 ln Module.symvers Module.symvers-modules
|
pascal@20170
|
336 cp .config config-modules
|
pankso@3864
|
337 }
|
erjo@253
|
338
|
pankso@3
|
339 # Rules to gen a SliTaz package suitable for Tazpkg.
|
pankso@3
|
340 genpkg_rules()
|
pankso@3
|
341 {
|
pankso@12803
|
342 case "$ARCH" in
|
pankso@12803
|
343 arm)
|
pankso@12803
|
344 echo "Packing: ARM Kernel"
|
pankso@12803
|
345 cp -a $install/* $fs
|
pankso@12803
|
346 rm -f $fs/lib/modules/*/build $fs/lib/modules/*/source
|
pankso@12803
|
347 return 0 ;;
|
pankso@12803
|
348 x86_64)
|
pankso@12803
|
349 echo "TODO: use default or custom x86_64 packing"
|
pankso@12803
|
350 return 0 ;;
|
pankso@12803
|
351 esac
|
pankso@12803
|
352
|
al@18734
|
353 export PACKAGE VERSION
|
al@18734
|
354 local path
|
al@18734
|
355 cp -a $install/boot $fs
|
al@18734
|
356
|
al@18734
|
357 # Compress all modules.
|
al@18734
|
358 path=$fs/lib/modules/$VERSION-slitaz/kernel
|
al@18734
|
359 mkdir -p $path
|
al@18734
|
360
|
al@18734
|
361 # Get the base modules
|
al@18734
|
362 export src install
|
al@18734
|
363 mkdir -p $WOK/$PACKAGE/source/tmp
|
al@18734
|
364 # Warning stuff/list_modules.sh must find the generated modules.list
|
al@18734
|
365 $stuff/list_modules.sh \
|
pankso@15855
|
366 $(cat $stuff/modules.list) > $WOK/$PACKAGE/source/tmp/modules.list
|
al@18734
|
367 while read module; do
|
al@18734
|
368 dir=$(dirname $module)
|
al@18734
|
369 [ -d $path/$dir ] || mkdir -p $path/$dir
|
al@18734
|
370 cp -a $install/lib/modules/$VERSION-slitaz/kernel/$module $path/$dir
|
al@18734
|
371 done < $WOK/$PACKAGE/source/tmp/modules.list
|
al@18734
|
372
|
al@18734
|
373 # Remove unresolved links
|
al@18734
|
374 rm -f $fs/lib/modules/$VERSION-slitaz/build
|
al@18734
|
375 rm -f $fs/lib/modules/$VERSION-slitaz/source
|
al@18734
|
376
|
al@18734
|
377 # We only need module.{order,builtin} because other map files are
|
al@18734
|
378 # generated by depmod in post_install
|
al@18734
|
379 cp -a $install/lib/modules/$VERSION-slitaz/modules.order \
|
pankso@15855
|
380 $install/lib/modules/$VERSION-slitaz/modules.builtin \
|
pankso@15855
|
381 $fs/lib/modules/$VERSION-slitaz
|
al@18734
|
382
|
al@18734
|
383 # Pack all packages with a kernel module
|
al@18734
|
384 for i in $(cd $WOK; grep -l '^WANTED="linux"' */receipt); do
|
pankso@15855
|
385 [ ! -d "$install/lib/modules/$VERSION-slitaz" ] && return 1
|
pankso@15855
|
386 cook ${i%/receipt}
|
al@18734
|
387 done
|
al@18734
|
388
|
pankso@15855
|
389 # Check any module in kernel .config that's not added to a linux-* pkgs
|
pankso@15855
|
390 # and remove aufs patches: we dont need them in HG wok.
|
pankso@15855
|
391 $stuff/check_modules.sh
|
pascal@20261
|
392
|
pascal@20261
|
393 # Keep fixed patches !
|
pascal@20261
|
394 #rm -f $stuff/aufs3-*
|
pankso@3
|
395 }
|
pankso@3
|
396
|
pankso@3
|
397 # Pre and post install commands for Tazpkg.
|
pankso@3
|
398 post_install()
|
pankso@3
|
399 {
|
al@18734
|
400 chroot "$root/" depmod -a $VERSION-slitaz
|
al@18734
|
401
|
al@18734
|
402 # Handle multiarch installation
|
al@18734
|
403 case "$SLITAZ_ARCH" in
|
pankso@12803
|
404 arm)
|
pankso@12803
|
405 echo "Kernel : /boot/linux-$VERSION-slitaz-$ARCH"
|
pankso@12803
|
406 echo "Modules: /lib/modules/$VERSION-slitaz"
|
pankso@12803
|
407 return 0 ;;
|
pankso@12803
|
408 esac
|
al@18734
|
409
|
pankso@15855
|
410 # GRUB stuff.
|
pankso@15855
|
411 if [ -f "$1/boot/grub/menu.lst" ]; then
|
pankso@15855
|
412 # Current root device
|
pankso@15855
|
413 root_dev="/dev/$(lsblk | grep '/$'| grep -o '[a-z]d[a-z][0-9]*')"
|
pankso@15855
|
414 grub_part="$(( $(echo $root_dev | grep -o '[0-9]*$')-1 ))"
|
pankso@15855
|
415 # Use device.map to find grub device number
|
pankso@15855
|
416 grub_dev="$(grep $(echo $root_dev | grep -o '^/dev/.d.' ) \
|
pascal@18730
|
417 "$1/boot/grub/device.map" | cut -f1 | sed "s/)$/.$grub_part)/g")"
|
al@18734
|
418
|
pankso@15855
|
419 # Add and clean kernel entries in case of upgrade for installed system.
|
pascal@18730
|
420 if ! grep -q vmlinuz-$VERSION-slitaz "$1/boot/grub/menu.lst"; then
|
al@18734
|
421
|
pankso@15855
|
422 # Clean the old entry
|
pankso@15855
|
423 # TODO: old vmlinuz file is removed but the entry is still there.
|
pankso@15855
|
424 # So grub error:15 when selected: http://bugs.slitaz.org/?id=74
|
border@13797
|
425
|
pankso@15855
|
426 # Add the new entry
|
pascal@18730
|
427 cat >> "$1/boot/grub/menu.lst" << EOT
|
pankso@4056
|
428
|
pankso@4056
|
429 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
|
border@13754
|
430 $grub_dev
|
border@13754
|
431 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev quiet
|
pankso@4056
|
432 EOT
|
border@13754
|
433 # Make it the default entry
|
pascal@18730
|
434 last_entry=$(( $(grep -c '^title' "$1/boot/grub/menu.lst")-1 ))
|
pascal@18730
|
435 sed -e "s/^default.*/default $last_entry/g" -i "$1/boot/grub/menu.lst"
|
pankso@4056
|
436 fi
|
al@18734
|
437
|
pankso@4056
|
438 # Display information message.
|
pankso@15855
|
439 cat <<EOT
|
al@18734
|
440
|
pankso@4056
|
441 ----
|
pankso@4056
|
442 GRUB is installed, these tree lines must be in your /boot/grub/menu.lst:
|
pankso@1154
|
443
|
pankso@1154
|
444 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
|
pankso@1154
|
445 $grub_dev
|
pankso@4056
|
446 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev
|
pascal@886
|
447 ----
|
pascal@886
|
448 EOT
|
pankso@1154
|
449 fi
|
pascal@18707
|
450 true
|
pankso@3
|
451 }
|