summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--package/krb5/Makefile2
-rw-r--r--target/linux/patches/2.6.37/mtd-rootfs.patch17
2 files changed, 9 insertions, 10 deletions
diff --git a/package/krb5/Makefile b/package/krb5/Makefile
index 6d73d2ec1..0dce661cc 100644
--- a/package/krb5/Makefile
+++ b/package/krb5/Makefile
@@ -59,7 +59,7 @@ post-install:
${IDIR_KRB5_SERVER}/usr/sbin
${INSTALL_DATA} ${WRKINST}/usr/lib/krb5/plugins/kdb/db2.so \
${IDIR_KRB5_SERVER}/usr/lib/krb5/plugins/kdb
- ${CP} ${WRKINST}/usr/lib/lib{gssrpc,kadm5clnt,kadm5srv,kdb5}.so* \
+ ${CP} ${WRKINST}/usr/lib/lib{gssrpc,kadm5clnt*,kadm5srv*,kdb5}.so* \
${IDIR_KRB5_SERVER}/usr/lib
libkrb5-install:
diff --git a/target/linux/patches/2.6.37/mtd-rootfs.patch b/target/linux/patches/2.6.37/mtd-rootfs.patch
index 74a94ff7e..9db687c90 100644
--- a/target/linux/patches/2.6.37/mtd-rootfs.patch
+++ b/target/linux/patches/2.6.37/mtd-rootfs.patch
@@ -1,6 +1,5 @@
-diff -Nur linux-2.6.37.orig/drivers/mtd/mtdpart.c linux-2.6.37/drivers/mtd/mtdpart.c
---- linux-2.6.37.orig/drivers/mtd/mtdpart.c 2011-01-05 01:50:19.000000000 +0100
-+++ linux-2.6.37/drivers/mtd/mtdpart.c 2011-01-18 00:23:32.000000000 +0100
+--- linux-2.6.37.orig/drivers/mtd/mtdpart.c
++++ linux-2.6.37/drivers/mtd/mtdpart.c
@@ -30,6 +30,7 @@
#include <linux/mtd/mtd.h>
#include <linux/mtd/partitions.h>
@@ -9,18 +8,18 @@ diff -Nur linux-2.6.37.orig/drivers/mtd/mtdpart.c linux-2.6.37/drivers/mtd/mtdpa
/* Our partition linked list */
static LIST_HEAD(mtd_partitions);
-@@ -642,6 +643,14 @@
+@@ -641,6 +642,14 @@
+ slave = allocate_partition(master, parts + i, i, cur_offset);
if (IS_ERR(slave))
return PTR_ERR(slave);
-
-+ if (!strcmp(parts[i].name, "rootfs")) {
++
++ if (strcmp(parts[i].name, "rootfs") == 0) {
+ if (ROOT_DEV == 0) {
+ printk(KERN_NOTICE "mtd: partition \"rootfs\" "
+ "set to be root filesystem\n");
-+ ROOT_DEV = MKDEV(MTD_BLOCK_MAJOR, slave->mtd.index);
++ ROOT_DEV = MKDEV(MTD_BLOCK_MAJOR, i);
+ }
+ }
-+
+
mutex_lock(&mtd_partitions_mutex);
list_add(&slave->list, &mtd_partitions);
- mutex_unlock(&mtd_partitions_mutex);