cookutils
annotate uname @ rev 1053
modules/deps: line "Requires: ..." in the *.pc files may contain variables (see cogl-dev package)
author |
Aleksej Bobylev <al.bobylev@gmail.com> |
date |
Tue May 01 16:00:00 2018 +0300 (2018-05-01) |
parents |
|
children |
799a5c056c55 |
rev |
line source |
al@1049
|
1 #!/bin/sh
|
al@1049
|
2 # uname - special "fake" wrapper for using inside SliTaz cooker chroot.
|
al@1049
|
3 # Although SliTaz cooker *host arch* is 64-bit, SliTaz *target arch* may be
|
al@1049
|
4 # 32-bit, and some configuration tools use uname could be improperly configured.
|
al@1049
|
5 # This also applies to the kernel versions of the host and the target systems.
|
al@1049
|
6
|
al@1049
|
7 . /etc/slitaz/cook.conf
|
al@1049
|
8 kernel_version=$(. /home/slitaz/wok/linux/receipt; echo $VERSION)
|
al@1049
|
9 uname_r=$(/bin/busybox uname -r)
|
al@1049
|
10 /bin/busybox uname $@ | sed "s|x86_64|$ARCH|g; s|$uname_r|$kernel_version-slitaz|g"
|