cookutils annotate uname @ rev 1049

Add uname
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Apr 19 17:43:31 2018 +0300 (2018-04-19)
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"