diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2013-04-22 11:47:46 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-04-23 08:59:23 +0200 |
commit | 246d12b5b49c045b6c74ea18ebb53778692a7e3f (patch) | |
tree | 1280dd845a4db7ef5399162297e325139d996a79 /package/busybox/1.20.2/busybox-1.20.2-kernel_ver.patch | |
parent | bd528977f1dbe232bd1ca2a0bd9a37f9172d579a (diff) | |
download | buildroot-novena-246d12b5b49c045b6c74ea18ebb53778692a7e3f.tar.gz buildroot-novena-246d12b5b49c045b6c74ea18ebb53778692a7e3f.zip |
busybox: move patches to new model
On commit 5538e4766201aa0c1c23721cfc99cbbde595964b the versioned package
patches changed the directory structure but the packages weren't fixed.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox/1.20.2/busybox-1.20.2-kernel_ver.patch')
-rw-r--r-- | package/busybox/1.20.2/busybox-1.20.2-kernel_ver.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/package/busybox/1.20.2/busybox-1.20.2-kernel_ver.patch b/package/busybox/1.20.2/busybox-1.20.2-kernel_ver.patch new file mode 100644 index 000000000..456fb08e1 --- /dev/null +++ b/package/busybox/1.20.2/busybox-1.20.2-kernel_ver.patch @@ -0,0 +1,25 @@ +--- busybox-1.20.2/libbb/kernel_version.c ++++ busybox-1.20.2-kernel_ver/libbb/kernel_version.c +@@ -20,18 +20,15 @@ + int FAST_FUNC get_linux_version_code(void) + { + struct utsname name; +- char *s; ++ char *s, *t; + int i, r; + +- if (uname(&name) == -1) { +- bb_perror_msg("can't get system information"); +- return 0; +- } +- ++ uname(&name); /* never fails */ + s = name.release; + r = 0; + for (i = 0; i < 3; i++) { +- r = r * 256 + atoi(strtok(s, ".")); ++ t = strtok(s, "."); ++ r = r * 256 + (t ? atoi(t) : 0); + s = NULL; + } + return r; |