kobs-ng: remove obsolete package
In favor of imx-kobs maintained by Freescale. Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
ff3e2d69a9
commit
2b78fb2147
@ -363,6 +363,14 @@ config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
|
|||||||
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
||||||
examples.
|
examples.
|
||||||
|
|
||||||
|
config BR2_PACKAGE_KOBS_NG
|
||||||
|
bool "kobs-ng was replaced by imx-kobs"
|
||||||
|
select BR2_LEGACY
|
||||||
|
select BR2_PACKAGE_IMX_KOBS
|
||||||
|
help
|
||||||
|
The outdated kobs-ng has been replaced by the Freescale-
|
||||||
|
maintained imx-kobs package.
|
||||||
|
|
||||||
config BR2_PACKAGE_SAWMAN
|
config BR2_PACKAGE_SAWMAN
|
||||||
bool "sawman package removed"
|
bool "sawman package removed"
|
||||||
select BR2_LEGACY
|
select BR2_LEGACY
|
||||||
|
@ -164,7 +164,6 @@ menu "Filesystem and flash utilities"
|
|||||||
source "package/genext2fs/Config.in"
|
source "package/genext2fs/Config.in"
|
||||||
source "package/genpart/Config.in"
|
source "package/genpart/Config.in"
|
||||||
source "package/genromfs/Config.in"
|
source "package/genromfs/Config.in"
|
||||||
source "package/kobs-ng/Config.in"
|
|
||||||
source "package/makedevs/Config.in"
|
source "package/makedevs/Config.in"
|
||||||
source "package/mmc-utils/Config.in"
|
source "package/mmc-utils/Config.in"
|
||||||
source "package/mtd/Config.in"
|
source "package/mtd/Config.in"
|
||||||
|
@ -1,73 +0,0 @@
|
|||||||
Newer kernel headers renamed mtd mode defines and no longer support
|
|
||||||
MEMSETOOBSEL. Allow code to work with both older and newer kernel
|
|
||||||
versions.
|
|
||||||
|
|
||||||
Signed-off-by: Paul B. Henson <henson@acm.org>
|
|
||||||
Signed-off-by: Sergey Alyoshin <alyoshin.s@gmail.com>
|
|
||||||
|
|
||||||
diff -u -r kobs-ng-3.0.35-4.0.0-orig/src/mtd.c kobs-ng-3.0.35-4.0.0/src/mtd.c
|
|
||||||
--- kobs-ng-3.0.35-4.0.0-orig/src/mtd.c 2012-12-17 22:37:40.000000000 -0800
|
|
||||||
+++ kobs-ng-3.0.35-4.0.0/src/mtd.c 2013-07-28 19:39:59.000000000 -0700
|
|
||||||
@@ -852,8 +852,11 @@
|
|
||||||
mp = &md->part[i];
|
|
||||||
|
|
||||||
if (mp->fd != -1) {
|
|
||||||
+/* Newer kernels dropped MEMSETOOBSEL */
|
|
||||||
+#ifdef MEMSETOOBSEL
|
|
||||||
(void)ioctl(mp->fd, MEMSETOOBSEL,
|
|
||||||
&mp->old_oobinfo);
|
|
||||||
+#endif
|
|
||||||
close(mp->fd);
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -896,6 +899,8 @@
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
+/* Newer kernels dropped MEMSETOOBSEL */
|
|
||||||
+#ifdef MEMSETOOBSEL
|
|
||||||
if (r == -ENOTTY) {
|
|
||||||
r = ioctl(mp->fd, MEMSETOOBSEL, &mp->old_oobinfo);
|
|
||||||
if (r != 0) {
|
|
||||||
@@ -904,6 +909,7 @@
|
|
||||||
}
|
|
||||||
mp->oobinfochanged = 0;
|
|
||||||
}
|
|
||||||
+#endif
|
|
||||||
} else {
|
|
||||||
r = ioctl(mp->fd, MTDFILEMODE, (void *)MTD_MODE_RAW);
|
|
||||||
if (r != 0 && r != -ENOTTY) {
|
|
||||||
@@ -911,6 +917,8 @@
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
+/* Newer kernels dropped MEMSETOOBSEL */
|
|
||||||
+#ifdef MEMSETOOBSEL
|
|
||||||
if (r == -ENOTTY) {
|
|
||||||
r = ioctl(mp->fd, MEMSETOOBSEL, &none_oobinfo);
|
|
||||||
if (r != 0) {
|
|
||||||
@@ -920,6 +928,7 @@
|
|
||||||
mp->oobinfochanged = 1;
|
|
||||||
} else
|
|
||||||
mp->oobinfochanged = 2;
|
|
||||||
+#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
mp->ecc = ecc;
|
|
||||||
diff -u -r kobs-ng-3.0.35-4.0.0-orig/src/mtd.h kobs-ng-3.0.35-4.0.0/src/mtd.h
|
|
||||||
--- kobs-ng-3.0.35-4.0.0-orig/src/mtd.h 2012-12-17 22:37:40.000000000 -0800
|
|
||||||
+++ kobs-ng-3.0.35-4.0.0/src/mtd.h 2013-07-28 19:33:57.000000000 -0700
|
|
||||||
@@ -31,6 +31,13 @@
|
|
||||||
#include "BootControlBlocks.h"
|
|
||||||
#include "rom_nand_hamming_code_ecc.h"
|
|
||||||
|
|
||||||
+// Newer kernel headers renamed define
|
|
||||||
+#include <linux/version.h>
|
|
||||||
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0)
|
|
||||||
+# define MTD_MODE_NORMAL MTD_FILE_MODE_NORMAL
|
|
||||||
+# define MTD_MODE_RAW MTD_FILE_MODE_RAW
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
// Re-definitions of true and false, because the standard ones aren't good
|
|
||||||
// enough?
|
|
@ -1,9 +0,0 @@
|
|||||||
config BR2_PACKAGE_KOBS_NG
|
|
||||||
bool "kobs-ng"
|
|
||||||
depends on BR2_arm
|
|
||||||
help
|
|
||||||
The kobs-ng tool is used for writing images to NAND on i.MX
|
|
||||||
platforms.
|
|
||||||
|
|
||||||
This utility is provided by Freescale as-is and doesn't have an
|
|
||||||
upstream.
|
|
@ -1,2 +0,0 @@
|
|||||||
# From http://repository.timesys.com/buildsources/k/kobs-ng/kobs-ng-3.0.35-4.0.0/kobs-ng-3.0.35-4.0.0.tar.gz.md5sum
|
|
||||||
md5 26104c577f59a6b81782a5bd16aadd82 kobs-ng-3.0.35-4.0.0.tar.gz
|
|
@ -1,13 +0,0 @@
|
|||||||
################################################################################
|
|
||||||
#
|
|
||||||
# kobs-ng
|
|
||||||
#
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
# kobs-ng versions have never made much sense :(
|
|
||||||
KOBS_NG_VERSION = 3.0.35-4.0.0
|
|
||||||
KOBS_NG_SITE = http://repository.timesys.com/buildsources/k/kobs-ng/kobs-ng-$(KOBS_NG_VERSION)
|
|
||||||
KOBS_NG_LICENSE = GPLv2+
|
|
||||||
KOBS_NG_LICENSE_FILES = COPYING
|
|
||||||
|
|
||||||
$(eval $(autotools-package))
|
|
Loading…
Reference in New Issue
Block a user