cookutils annotate uname @ rev 1148

cook: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 09 15:36:25 2021 +0000 (2021-11-09)
parents 251a9d5b7542
children
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
paul@1061 4 # 32-bit and some configuration tools using 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"