summaryrefslogtreecommitdiffstats
path: root/package/busybox/busybox-1.17.0/busybox-1.17.0-top.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2010-07-26 10:03:42 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2010-07-26 10:03:42 +0200
commitdeb51ad988ebd110c8ad8fe19d3d72473df29d0b (patch)
tree669bf208b716b3a0d7dd3564f16adfd53bba527c /package/busybox/busybox-1.17.0/busybox-1.17.0-top.patch
parent9fb9dc0beaa7775c8f612ab997a5ce2a2402a37b (diff)
downloadbuildroot-novena-deb51ad988ebd110c8ad8fe19d3d72473df29d0b.tar.gz
buildroot-novena-deb51ad988ebd110c8ad8fe19d3d72473df29d0b.zip
busybox: bump 1.17.x version
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox/busybox-1.17.0/busybox-1.17.0-top.patch')
-rw-r--r--package/busybox/busybox-1.17.0/busybox-1.17.0-top.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/package/busybox/busybox-1.17.0/busybox-1.17.0-top.patch b/package/busybox/busybox-1.17.0/busybox-1.17.0-top.patch
deleted file mode 100644
index 84c91f34a..000000000
--- a/package/busybox/busybox-1.17.0/busybox-1.17.0-top.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff -urpN busybox-1.17.0/procps/top.c busybox-1.17.0-top/procps/top.c
---- busybox-1.17.0/procps/top.c 2010-06-24 04:40:43.000000000 +0200
-+++ busybox-1.17.0-top/procps/top.c 2010-07-19 00:27:04.000000000 +0200
-@@ -686,10 +686,10 @@ static int topmem_sort(char *a, char *b)
- n = offsetof(topmem_status_t, vsz) + (sort_field * sizeof(mem_t));
- l = *(mem_t*)(a + n);
- r = *(mem_t*)(b + n);
--// if (l == r) {
--// l = a->mapped_rw;
--// r = b->mapped_rw;
--// }
-+ if (l == r) {
-+ l = ((topmem_status_t*)a)->dirty;
-+ r = ((topmem_status_t*)b)->dirty;
-+ }
- /* We want to avoid unsigned->signed and truncation errors */
- /* l>r: -1, l=r: 0, l<r: 1 */
- n = (l > r) ? -1 : (l != r);