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