Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
genpart: return 0 if partition writen OK, with no do_magic
If do_magic is false, we don't won't write the 0xaa55 magic.
However, if we succesfully wrote the partition entry, we still
want to return 0 to indicate success.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Robert Schwebel <r.schwebel@pengutronix.de>
--
Patch sent upstream, but no mailing list.
Status: accepted upstream, not yet released.
diff -durN host-genpart-1.0.2.orig/src/genpart.c host-genpart-1.0.2/src/genpart.c
--- host-genpart-1.0.2.orig/src/genpart.c 2009-12-20 21:54:56.000000000 +0100
+++ host-genpart-1.0.2/src/genpart.c 2013-01-22 23:13:24.109752579 +0100
@@ -92,6 +92,8 @@
if (do_magic) {
if (fwrite(&magic, 2, 1, stdout) > 0)
rc=0;
+ } else {
+ rc=0;
}
}
return rc;

View File

@@ -0,0 +1,8 @@
config BR2_PACKAGE_GENPART
bool "genpart"
help
Generate a 16 byte partition table entry defined by command line
arguments and dump it to stdout. No CHS magic is done, only lba
entries are filled out.
http://www.pengutronix.de/software/genpart/index_en.html

View File

@@ -0,0 +1,8 @@
config BR2_PACKAGE_HOST_GENPART
bool "host genpart"
help
Generate a 16 byte partition table entry defined by command line
arguments and dump it to stdout. No CHS magic is done, only lba
entries are filled out.
http://www.pengutronix.de/software/genpart/index_en.html

View File

@@ -0,0 +1,2 @@
# Locally calculated
sha256 bfb39434f31d10f1b8c7b6bc6ec612309838c2819022561541c4d2d5a424e3f2 genpart-1.0.2.tar.bz2

View File

@@ -0,0 +1,19 @@
################################################################################
#
# genpart
#
################################################################################
GENPART_VERSION = 1.0.2
GENPART_SOURCE = genpart-$(GENPART_VERSION).tar.bz2
GENPART_SITE = http://www.pengutronix.de/software/genpart/download
# genpart has no license embedded in its source release.
# However, their project page mentions:
# > This community portal offers an overview about our own OSS
# > projects and projects Pengutronix is or was involved with.
# We can thus assume genpart is under a FLOSS license.
# So, until the authors have clarified the licensing terms:
GENPART_LICENSE = Unknown (clarification has been asked to the authors)
$(eval $(autotools-package))
$(eval $(host-autotools-package))