diff options
| author | Denys Dmytriyenko <denis@denix.org> | 2022-05-30 16:26:01 +0000 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-05-31 08:26:23 -0700 |
| commit | 356b488fb06bcacb0aa553518442b2d9574f16af (patch) | |
| tree | f97e566991d173da91400a983102bb289bd3a0fe /meta-oe/recipes-support/devmem2/devmem2_2.0.bb | |
| parent | c8541a348232e99eb54bf49661966192fbf8a0c0 (diff) | |
| download | meta-openembedded-356b488fb06bcacb0aa553518442b2d9574f16af.tar.gz | |
devmem2: the source and patches moved to github repo
To cleanup metadata and improve source code management, github repo was
created here with all patches integrated:
https://github.com/denix0/devmem2
Update recipe accordingly, bump the version while at it to distinguish
from the original.
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/devmem2/devmem2_2.0.bb')
| -rw-r--r-- | meta-oe/recipes-support/devmem2/devmem2_2.0.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/devmem2/devmem2_2.0.bb b/meta-oe/recipes-support/devmem2/devmem2_2.0.bb new file mode 100644 index 0000000000..aee6bfe3da --- /dev/null +++ b/meta-oe/recipes-support/devmem2/devmem2_2.0.bb | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | SUMMARY = "Simple program to read/write from/to any location in memory" | ||
| 2 | LICENSE = "GPL-2.0-or-later" | ||
| 3 | LIC_FILES_CHKSUM = "file://devmem2.c;endline=38;md5=a9eb9f3890384519f435aedf986297cf" | ||
| 4 | |||
| 5 | SRC_URI = "git://github.com/denix0/devmem2.git;protocol=https;branch=main" | ||
| 6 | SRCREV = "5b395a946894eb4f4ef5d07c80a50a88573a541e" | ||
| 7 | |||
| 8 | S = "${WORKDIR}/git" | ||
| 9 | |||
| 10 | CFLAGS += "-DFORCE_STRICT_ALIGNMENT" | ||
| 11 | |||
| 12 | do_compile() { | ||
| 13 | ${CC} -o devmem2 devmem2.c ${CFLAGS} ${LDFLAGS} | ||
| 14 | } | ||
| 15 | |||
| 16 | do_install() { | ||
| 17 | install -d ${D}${bindir} | ||
| 18 | install devmem2 ${D}${bindir} | ||
| 19 | } | ||
