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
|
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..."
|
pascal@20324
|
182 AUFSVER=$(grep ^VERSION= $WOK/linux-aufs/receipt | cut -d "=" -f2 | sed -e 's/"//g')
|
pascal@20324
|
183 AUFSSRCDIR="$WOK/linux-aufs/source"
|
pascal@20324
|
184 AUFSDIR="$AUFSSRCDIR/linux-aufs-${AUFSVER}"
|
pankso@15855
|
185 if [ ! -d "$AUFSDIR" ]; then
|
pankso@15855
|
186 [ ! -f "$SRC/aufs-${AUFSVER}.tar.bz2" ] && cook aufs --getsrc
|
pascal@20324
|
187 mkdir -p $AUFSSRCDIR
|
pankso@15855
|
188 echo "Extracting: aufs-${AUFSVER}.tar.bz2"
|
pascal@20324
|
189 tar xjf $SRC/aufs-${AUFSVER}.tar.bz2 -C $AUFSSRCDIR/
|
pascal@20324
|
190 ( cd $AUFSDIR ; [ -d fs ] || git checkout origin/aufs${VERSION%.*} )
|
pankso@9731
|
191 fi
|
pankso@15855
|
192
|
pankso@12285
|
193 echo "cook:linux" > $command
|
pankso@12285
|
194
|
pankso@9731
|
195 echo "Copying Aufs files and patches..."
|
slaxemulator@7297
|
196 cp -a $AUFSDIR/Documentation $AUFSDIR/fs $AUFSDIR/include $src
|
pascal@20261
|
197
|
pascal@20261
|
198 # Use fixed patchs from stuff
|
pankso@12285
|
199 cp -a $AUFSDIR/aufs3-*.patch $stuff
|
pankso@12285
|
200
|
pankso@15855
|
201 # SliTaz db stuff
|
pankso@15855
|
202 [ -d $WOK/$PACKAGE/source/slitaz ] && rm -rf $WOK/$PACKAGE/source/slitaz
|
pankso@12285
|
203 mkdir -p $WOK/$PACKAGE/source/slitaz
|
pankso@12290
|
204 echo "$WGET_URL" > $WOK/$PACKAGE/source/slitaz/url
|
pankso@12285
|
205 cp $stuff/gztazmod.sh $stuff/list_modules.sh $WOK/$PACKAGE/source/slitaz
|
pankso@12285
|
206 cp $stuff/bootloader.sh $WOK/$PACKAGE/source/slitaz
|
pankso@12803
|
207
|
pankso@5640
|
208 # Apply patches
|
pankso@9731
|
209 echo "Applying patches..."
|
pascal@521
|
210 while read patch_file; do
|
pankso@12285
|
211 echo "$patch_file" >> $WOK/$PACKAGE/source/slitaz/patches
|
pankso@12285
|
212 cp $stuff/$patch_file $WOK/$PACKAGE/source/slitaz
|
pascal@1442
|
213 if [ -f done.$patch_file ]; then
|
pankso@15855
|
214 echo "Skipping $patch_file" && continue
|
pascal@1442
|
215 fi
|
pascal@521
|
216 echo "Apply $patch_file"
|
pankso@15855
|
217 patch -p1 < $WOK/$PACKAGE/source/slitaz/$patch_file || return 1
|
pascal@1442
|
218 touch done.$patch_file
|
pascal@521
|
219 done <<EOT
|
pankso@12285
|
220 $PACKAGE-diff.u
|
pankso@12285
|
221 $PACKAGE-freeinitrd.u
|
pascal@14759
|
222 $PACKAGE-subroot.u
|
pascal@17267
|
223 $PACKAGE-romfs.u
|
pascal@20313
|
224 $PACKAGE-tcp_stealth.u
|
pascal@20333
|
225 $PACKAGE-efi.u
|
pankso@12285
|
226 aufs3-base.patch
|
pankso@12285
|
227 aufs3-standalone.patch
|
pankso@12285
|
228 aufs3-loopback.patch
|
mojo@15707
|
229 aufs3-mmap.patch
|
pascal@521
|
230 EOT
|
pankso@15855
|
231
|
pankso@15855
|
232 # Mrproper and lguest
|
pankso@15855
|
233 echo "Make kernel proper and then build lguest..."
|
pankso@3864
|
234 make mrproper
|
pascal@20261
|
235 cd tools/lguest
|
pankso@15855
|
236 make lguest || return 1
|
pascal@20271
|
237
|
pascal@20271
|
238 echo "Build usbip..."
|
pascal@20271
|
239 cd $src/drivers/staging/usbip/userspace
|
pascal@20271
|
240 ./autogen.sh
|
pascal@20271
|
241 ./configure CFLAGS="$CFLAGS -Wno-error=uninitialized" \
|
pascal@20271
|
242 --with-usbids-dir=/usr/share/misc \
|
pascal@20271
|
243 --mandir=/usr/share/man $CONFIGURE_ARGS &&
|
pascal@20273
|
244 make && make DESTDIR=$DESTDIR/usbip install || return 1
|
pascal@20271
|
245
|
pankso@15855
|
246 cd $src
|
pankso@15855
|
247
|
pankso@15855
|
248 #
|
pankso@15855
|
249 # Arch x86_64: TODO have a real cross environment
|
pankso@15855
|
250 #
|
pankso@15870
|
251 if [ ! "$nox64" ]; then
|
pankso@15855
|
252 echo "Compiling: x86_64 Kernel"
|
pankso@15855
|
253
|
pankso@15855
|
254 # Build bzImage64 without modules first
|
pankso@15870
|
255 if [ ! "$nonomods" ]; then
|
pascal@20274
|
256 [ -d $DESTDIR/linux64 ] || mkdir -p $DESTDIR/linux64 ||
|
pascal@20274
|
257 return 1
|
pankso@15855
|
258 cp -f $stuff/$PACKAGE-slitaz.config64 .config
|
pankso@15855
|
259 sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config
|
pankso@15855
|
260 echo -e "\n* Configure bzImage64 without modules...\n"
|
pankso@15855
|
261 yes '' | make ARCH=x86_64 oldconfig
|
pankso@15855
|
262 echo -e "\n* Building bzImage64 without modules...\n"
|
pankso@15855
|
263 make -j 4 ARCH=x86_64 CROSS_COMPILE=uclibc-x86_64- bzImage || exit 1
|
pankso@15855
|
264 mv arch/x86/boot/bzImage $DESTDIR/linux64
|
pankso@15855
|
265 mv System.map System.map-without-modules64
|
pascal@20169
|
266 mv vmlinux vmlinux-without-modules64
|
pascal@20169
|
267 mv .config config-without-modules64
|
pankso@15855
|
268 fi
|
pankso@15855
|
269
|
pankso@15855
|
270 # Build bzImage64 with modules
|
pankso@15855
|
271 cp -f $stuff/$PACKAGE-slitaz.config64 .config
|
pankso@15855
|
272 echo -e "\n* Configure bzImage64 with modules...\n"
|
pankso@15855
|
273 yes '' | make ARCH=x86_64 oldconfig
|
pankso@15855
|
274 echo -e "\n* Building bzImage64 with modules...\n"
|
pankso@15855
|
275 make -j 4 ARCH=x86_64 CROSS_COMPILE=uclibc-x86_64- bzImage &&
|
pankso@15855
|
276 make -j 4 ARCH=x86_64 CROSS_COMPILE=uclibc-x86_64- modules &&
|
pankso@15855
|
277 make ARCH=x86_64 INSTALL_MOD_PATH=$DESTDIR/linux64 modules_install &&
|
pankso@15855
|
278 make ARCH=x86_64 INSTALL_HDR_PATH=$DESTDIR/linux64/usr headers_install &&
|
pankso@15855
|
279 ln .config $WOK/$PACKAGE/source/slitaz/config64
|
pankso@15855
|
280 [ -s arch/x86/boot/bzImage ] || return 1
|
pankso@15855
|
281 mkdir -p $DESTDIR/linux64/boot 2> /dev/null
|
pascal@17031
|
282 mv arch/x86/boot/bzImage $DESTDIR/linux64/boot/vmlinuz-$VERSION-slitaz64
|
pascal@17366
|
283 KVERSION=$VERSION-slitaz64
|
pascal@17366
|
284 install_module_headers $DESTDIR/linux64
|
pankso@15855
|
285 ln System.map System.map-modules64
|
pascal@20169
|
286 ln vmlinux vmlinux-modules64
|
pankso@15855
|
287 ln Module.symvers Module.symvers-modules64
|
pascal@20170
|
288 cp .config config-modules64
|
pankso@15855
|
289 else
|
pankso@15855
|
290 echo "* Skipping: x86_64 Kernel..."
|
pankso@12285
|
291 fi
|
pankso@15855
|
292
|
pankso@12294
|
293 #
|
pankso@15855
|
294 # Linux Arch i386 - GCC arch i486
|
pankso@12294
|
295 #
|
pankso@15855
|
296 echo "Compiling: i386 Kernel..."
|
pankso@12803
|
297
|
pankso@12294
|
298 # Build bzImage without modules first
|
pankso@15870
|
299 if [ ! "$nonomods" ]; then
|
pankso@15855
|
300 cp -f $stuff/$PACKAGE-slitaz.config .config
|
pankso@15855
|
301 sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config
|
pankso@15855
|
302 echo -e "\n* Configure bzImage without modules...\n"
|
pankso@15855
|
303 yes '' | make ARCH=i386 oldconfig
|
pankso@15855
|
304 echo -e "\n* Building bzImage without modules...\n"
|
pascal@15670
|
305 make ARCH=i386 -j 4 bzImage || exit 1
|
pankso@15855
|
306 [ -d $DESTDIR ] || mkdir -p $DESTDIR
|
pankso@15855
|
307 mv arch/x86/boot/bzImage $DESTDIR
|
pankso@15855
|
308 mv System.map System.map-without-modules
|
pascal@20169
|
309 mv vmlinux vmlinux-without-modules
|
pascal@20169
|
310 mv .config config-without-modules
|
pankso@12294
|
311 fi
|
pankso@15855
|
312
|
pankso@12294
|
313 # Build bzImage with modules
|
pankso@12294
|
314 cp -f $stuff/$PACKAGE-slitaz.config .config
|
pankso@15855
|
315 echo -e "\n* Configure bzImage with modules...\n"
|
pascal@15733
|
316 yes '' | make ARCH=i386 oldconfig
|
pankso@12294
|
317 ln .config $WOK/$PACKAGE/source/slitaz/config
|
pankso@15855
|
318 echo -e "\n* Building bzImage with modules...\n"
|
pascal@15670
|
319 make ARCH=i386 -j 4 bzImage &&
|
pascal@15670
|
320 make ARCH=i386 -j 4 modules &&
|
pascal@15670
|
321 make ARCH=i386 INSTALL_MOD_PATH=$DESTDIR modules_install &&
|
pascal@15670
|
322 make ARCH=i386 INSTALL_HDR_PATH=$DESTDIR/usr headers_install &&
|
pankso@15855
|
323 [ -s arch/x86/boot/bzImage ] || return 1
|
pankso@12294
|
324 mkdir -p $DESTDIR/boot 2> /dev/null
|
pankso@12294
|
325 mv arch/x86/boot/bzImage $DESTDIR/boot/vmlinuz-$VERSION-slitaz
|
pascal@17366
|
326 KVERSION=$VERSION-slitaz
|
pascal@17366
|
327 install_module_headers $DESTDIR
|
pankso@15855
|
328
|
slaxemulator@6719
|
329 # Compress all modules.
|
pankso@15855
|
330 if [ -d "$DESTDIR/lib/modules/$VERSION-slitaz" ]; then
|
pankso@15855
|
331 $stuff/gztazmod.sh $DESTDIR/lib/modules/$VERSION-slitaz
|
pankso@15855
|
332 else
|
pankso@15855
|
333 return 1
|
pankso@15855
|
334 fi
|
pascal@17031
|
335 if [ -d "$DESTDIR/linux64/lib/modules/$VERSION-slitaz64" ]; then
|
pascal@17031
|
336 $stuff/gztazmod.sh $DESTDIR/linux64/lib/modules/$VERSION-slitaz64
|
pankso@15855
|
337 fi
|
pascal@7667
|
338 ln System.map System.map-modules
|
pascal@20169
|
339 ln vmlinux vmlinux-modules
|
pascal@7667
|
340 ln Module.symvers Module.symvers-modules
|
pascal@20170
|
341 cp .config config-modules
|
pankso@3864
|
342 }
|
erjo@253
|
343
|
pankso@3
|
344 # Rules to gen a SliTaz package suitable for Tazpkg.
|
pankso@3
|
345 genpkg_rules()
|
pankso@3
|
346 {
|
pankso@12803
|
347 case "$ARCH" in
|
pankso@12803
|
348 arm)
|
pankso@12803
|
349 echo "Packing: ARM Kernel"
|
pankso@12803
|
350 cp -a $install/* $fs
|
pankso@12803
|
351 rm -f $fs/lib/modules/*/build $fs/lib/modules/*/source
|
pankso@12803
|
352 return 0 ;;
|
pankso@12803
|
353 x86_64)
|
pankso@12803
|
354 echo "TODO: use default or custom x86_64 packing"
|
pankso@12803
|
355 return 0 ;;
|
pankso@12803
|
356 esac
|
pankso@12803
|
357
|
al@18734
|
358 export PACKAGE VERSION
|
al@18734
|
359 local path
|
al@18734
|
360 cp -a $install/boot $fs
|
al@18734
|
361
|
al@18734
|
362 # Compress all modules.
|
al@18734
|
363 path=$fs/lib/modules/$VERSION-slitaz/kernel
|
al@18734
|
364 mkdir -p $path
|
al@18734
|
365
|
al@18734
|
366 # Get the base modules
|
al@18734
|
367 export src install
|
al@18734
|
368 mkdir -p $WOK/$PACKAGE/source/tmp
|
al@18734
|
369 # Warning stuff/list_modules.sh must find the generated modules.list
|
al@18734
|
370 $stuff/list_modules.sh \
|
pankso@15855
|
371 $(cat $stuff/modules.list) > $WOK/$PACKAGE/source/tmp/modules.list
|
al@18734
|
372 while read module; do
|
al@18734
|
373 dir=$(dirname $module)
|
al@18734
|
374 [ -d $path/$dir ] || mkdir -p $path/$dir
|
al@18734
|
375 cp -a $install/lib/modules/$VERSION-slitaz/kernel/$module $path/$dir
|
al@18734
|
376 done < $WOK/$PACKAGE/source/tmp/modules.list
|
al@18734
|
377
|
al@18734
|
378 # Remove unresolved links
|
al@18734
|
379 rm -f $fs/lib/modules/$VERSION-slitaz/build
|
al@18734
|
380 rm -f $fs/lib/modules/$VERSION-slitaz/source
|
al@18734
|
381
|
al@18734
|
382 # We only need module.{order,builtin} because other map files are
|
al@18734
|
383 # generated by depmod in post_install
|
al@18734
|
384 cp -a $install/lib/modules/$VERSION-slitaz/modules.order \
|
pankso@15855
|
385 $install/lib/modules/$VERSION-slitaz/modules.builtin \
|
pankso@15855
|
386 $fs/lib/modules/$VERSION-slitaz
|
al@18734
|
387
|
al@18734
|
388 # Pack all packages with a kernel module
|
pascal@20274
|
389 sed -i "/^$PACKAGE\$/d" $CACHE/broken 2>/dev/null || true
|
al@18734
|
390 for i in $(cd $WOK; grep -l '^WANTED="linux"' */receipt); do
|
pankso@15855
|
391 [ ! -d "$install/lib/modules/$VERSION-slitaz" ] && return 1
|
pankso@15855
|
392 cook ${i%/receipt}
|
al@18734
|
393 done
|
al@18734
|
394
|
pankso@15855
|
395 # Check any module in kernel .config that's not added to a linux-* pkgs
|
pankso@15855
|
396 # and remove aufs patches: we dont need them in HG wok.
|
pankso@15855
|
397 $stuff/check_modules.sh
|
pascal@20261
|
398
|
pascal@20261
|
399 # Keep fixed patches !
|
pascal@20261
|
400 #rm -f $stuff/aufs3-*
|
pankso@3
|
401 }
|
pankso@3
|
402
|
pankso@3
|
403 # Pre and post install commands for Tazpkg.
|
pankso@3
|
404 post_install()
|
pankso@3
|
405 {
|
al@18734
|
406 chroot "$root/" depmod -a $VERSION-slitaz
|
al@18734
|
407
|
al@18734
|
408 # Handle multiarch installation
|
al@18734
|
409 case "$SLITAZ_ARCH" in
|
pankso@12803
|
410 arm)
|
pankso@12803
|
411 echo "Kernel : /boot/linux-$VERSION-slitaz-$ARCH"
|
pankso@12803
|
412 echo "Modules: /lib/modules/$VERSION-slitaz"
|
pankso@12803
|
413 return 0 ;;
|
pankso@12803
|
414 esac
|
al@18734
|
415
|
pankso@15855
|
416 # GRUB stuff.
|
pankso@15855
|
417 if [ -f "$1/boot/grub/menu.lst" ]; then
|
pankso@15855
|
418 # Current root device
|
pankso@15855
|
419 root_dev="/dev/$(lsblk | grep '/$'| grep -o '[a-z]d[a-z][0-9]*')"
|
pankso@15855
|
420 grub_part="$(( $(echo $root_dev | grep -o '[0-9]*$')-1 ))"
|
pankso@15855
|
421 # Use device.map to find grub device number
|
pankso@15855
|
422 grub_dev="$(grep $(echo $root_dev | grep -o '^/dev/.d.' ) \
|
pascal@18730
|
423 "$1/boot/grub/device.map" | cut -f1 | sed "s/)$/.$grub_part)/g")"
|
al@18734
|
424
|
pankso@15855
|
425 # Add and clean kernel entries in case of upgrade for installed system.
|
pascal@18730
|
426 if ! grep -q vmlinuz-$VERSION-slitaz "$1/boot/grub/menu.lst"; then
|
al@18734
|
427
|
pankso@15855
|
428 # Clean the old entry
|
pankso@15855
|
429 # TODO: old vmlinuz file is removed but the entry is still there.
|
pankso@15855
|
430 # So grub error:15 when selected: http://bugs.slitaz.org/?id=74
|
border@13797
|
431
|
pankso@15855
|
432 # Add the new entry
|
pascal@18730
|
433 cat >> "$1/boot/grub/menu.lst" << EOT
|
pankso@4056
|
434
|
pankso@4056
|
435 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
|
border@13754
|
436 $grub_dev
|
border@13754
|
437 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev quiet
|
pankso@4056
|
438 EOT
|
border@13754
|
439 # Make it the default entry
|
pascal@18730
|
440 last_entry=$(( $(grep -c '^title' "$1/boot/grub/menu.lst")-1 ))
|
pascal@18730
|
441 sed -e "s/^default.*/default $last_entry/g" -i "$1/boot/grub/menu.lst"
|
pankso@4056
|
442 fi
|
al@18734
|
443
|
pankso@4056
|
444 # Display information message.
|
pankso@15855
|
445 cat <<EOT
|
al@18734
|
446
|
pankso@4056
|
447 ----
|
pankso@4056
|
448 GRUB is installed, these tree lines must be in your /boot/grub/menu.lst:
|
pankso@1154
|
449
|
pankso@1154
|
450 title SliTaz GNU/Linux (Kernel $VERSION-slitaz)
|
pankso@1154
|
451 $grub_dev
|
pankso@4056
|
452 kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev
|
pascal@886
|
453 ----
|
pascal@886
|
454 EOT
|
pankso@1154
|
455 fi
|
pascal@18707
|
456 true
|
pankso@3
|
457 }
|