diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2012-09-04 13:07:38 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-09-04 13:08:19 +0200 |
commit | 9ec1c5d9d31b4f377c91a0451efd3ba67416d6f8 (patch) | |
tree | 30100b3253ad51e58c442cf8216f032b99098300 /package/busybox/busybox-1.20.2/busybox-1.20.2-kernel_ver.patch | |
parent | 11f338bcbc48816b0e4d637ea6f798f7df328d2e (diff) | |
download | buildroot-novena-9ec1c5d9d31b4f377c91a0451efd3ba67416d6f8.tar.gz buildroot-novena-9ec1c5d9d31b4f377c91a0451efd3ba67416d6f8.zip |
busybox: add 1.19.4 / 1.20.2 fixes
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox/busybox-1.20.2/busybox-1.20.2-kernel_ver.patch')
-rw-r--r-- | package/busybox/busybox-1.20.2/busybox-1.20.2-kernel_ver.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/package/busybox/busybox-1.20.2/busybox-1.20.2-kernel_ver.patch b/package/busybox/busybox-1.20.2/busybox-1.20.2-kernel_ver.patch new file mode 100644 index 000000000..456fb08e1 --- /dev/null +++ b/package/busybox/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; |