From: Maksim Kiselev <bigunclemax@gmail.com>
To: buildroot@buildroot.org
Cc: Maksim Kiselev <bigunclemax@gmail.com>,
Giulio Benetti <giulio.benetti@benettiengineering.com>
Subject: [Buildroot] [PATCH 1/1] sunxi-tools: bump to version 1.4.2-168-ged3039c
Date: Mon, 10 Apr 2023 11:40:18 +0300 [thread overview]
Message-ID: <20230410084020.1812422-1-bigunclemax@gmail.com> (raw)
This patch bumps version of the sunxi-tools to latest commit on master branch.
There are no new tags\releases since 2016 so let's use commit hash as version.
New version brings support for the following SOCs: A63, V5, R528/T113s, V853,
F1C100s, R329, H616, H6
Signed-off-by: Maksim Kiselev <bigunclemax@gmail.com>
---
...nfo-Access-to-io-memory-via-pointers.patch | 59 -------------------
package/sunxi-tools/Config.in | 1 +
package/sunxi-tools/sunxi-tools.hash | 2 +-
package/sunxi-tools/sunxi-tools.mk | 4 +-
4 files changed, 4 insertions(+), 62 deletions(-)
delete mode 100644 package/sunxi-tools/0001-meminfo-Access-to-io-memory-via-pointers.patch
diff --git a/package/sunxi-tools/0001-meminfo-Access-to-io-memory-via-pointers.patch b/package/sunxi-tools/0001-meminfo-Access-to-io-memory-via-pointers.patch
deleted file mode 100644
index 997c413f23..0000000000
--- a/package/sunxi-tools/0001-meminfo-Access-to-io-memory-via-pointers.patch
+++ /dev/null
@@ -1,59 +0,0 @@
-From 5c0a443ba336f10a8db6a99c769aa84ad37ed4d2 Mon Sep 17 00:00:00 2001
-From: Vadim Kochan <vadim4j@gmail.com>
-Date: Wed, 20 Feb 2019 02:48:43 +0200
-Subject: [PATCH] meminfo: Access to io memory via pointers
-
-The main reason for this is to be able compile with musl library,
-because there is no support of inx/outx functions for ARM platform.
-
-Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
----
- meminfo.c | 11 ++++++-----
- 1 file changed, 6 insertions(+), 5 deletions(-)
-
-diff --git a/meminfo.c b/meminfo.c
-index 0b0ff23..7d9f10f 100644
---- a/meminfo.c
-+++ b/meminfo.c
-@@ -22,7 +22,6 @@
- #include <sys/mman.h>
- #include <stdint.h>
- #include <errno.h>
--#include <sys/io.h>
- #include <stdbool.h>
-
- #include "common.h"
-@@ -74,24 +73,26 @@ static enum sunxi_soc_version soc_version;
- unsigned int
- sunxi_io_read(void *base, int offset)
- {
-- return inl((unsigned long) (base + offset));
-+ unsigned long port = (unsigned long) (base + offset);
-+ return *((volatile unsigned long *) port);
- }
-
- void
- sunxi_io_write(void *base, int offset, unsigned int value)
- {
-- outl(value, (unsigned long) (base + offset));
-+ unsigned long port = (unsigned long) (base + offset);
-+ *((volatile unsigned long *) port) = value;
- }
-
- void
- sunxi_io_mask(void *base, int offset, unsigned int value, unsigned int mask)
- {
-- unsigned int tmp = inl((unsigned long) (base + offset));
-+ unsigned int tmp = sunxi_io_read(base, offset);
-
- tmp &= ~mask;
- tmp |= value & mask;
-
-- outl(tmp, (unsigned long) (base + offset));
-+ sunxi_io_write(base, offset, tmp);
- }
-
-
---
-2.14.1
-
diff --git a/package/sunxi-tools/Config.in b/package/sunxi-tools/Config.in
index 5f72667284..e748637c72 100644
--- a/package/sunxi-tools/Config.in
+++ b/package/sunxi-tools/Config.in
@@ -25,6 +25,7 @@ config BR2_PACKAGE_SUNXI_TOOLS_FEL
bool "sunxi-fel"
depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
+ select BR2_PACKAGE_DTC
select BR2_PACKAGE_LIBUSB
help
The sunxi-fel command can interact with a sunxi device in
diff --git a/package/sunxi-tools/sunxi-tools.hash b/package/sunxi-tools/sunxi-tools.hash
index 84acc2c76c..b871f6e17b 100644
--- a/package/sunxi-tools/sunxi-tools.hash
+++ b/package/sunxi-tools/sunxi-tools.hash
@@ -1,3 +1,3 @@
# Locally calculated
-sha256 81f48014a520cb83cac4e17f5ae627a637c4d6a422b60c693c5a705c92e43822 sunxi-tools-1.4.2.tar.gz
+sha256 6589f32e9c2a5991cc49928e83aceea675f0165ce6f13cdd2dd784139a8d4efd sunxi-tools-1.4.2-168-ged3039c.tar.gz
sha256 2b0d4dda4bf8034e1506507a67f80f982131137afe62bf144d248f9faea31da4 LICENSE.md
diff --git a/package/sunxi-tools/sunxi-tools.mk b/package/sunxi-tools/sunxi-tools.mk
index 59d1f3b5a0..dab68886b1 100644
--- a/package/sunxi-tools/sunxi-tools.mk
+++ b/package/sunxi-tools/sunxi-tools.mk
@@ -4,7 +4,7 @@
#
################################################################################
-SUNXI_TOOLS_VERSION = 1.4.2
+SUNXI_TOOLS_VERSION = 1.4.2-168-ged3039c
SUNXI_TOOLS_SITE = $(call github,linux-sunxi,sunxi-tools,v$(SUNXI_TOOLS_VERSION))
SUNXI_TOOLS_LICENSE = GPL-2.0+
SUNXI_TOOLS_LICENSE_FILES = LICENSE.md
@@ -26,7 +26,7 @@ SUNXI_TOOLS_FEXC_LINKS += fex2bin bin2fex
endif
ifeq ($(BR2_PACKAGE_SUNXI_TOOLS_FEL),y)
-SUNXI_TOOLS_DEPENDENCIES += libusb host-pkgconf
+SUNXI_TOOLS_DEPENDENCIES += dtc libusb host-pkgconf
endif
define HOST_SUNXI_TOOLS_BUILD_CMDS
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
next reply other threads:[~2023-04-10 8:40 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-10 8:40 Maksim Kiselev [this message]
2023-04-10 13:47 ` [Buildroot] [PATCH 1/1] sunxi-tools: bump to version 1.4.2-168-ged3039c Arnout Vandecappelle
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230410084020.1812422-1-bigunclemax@gmail.com \
--to=bigunclemax@gmail.com \
--cc=buildroot@buildroot.org \
--cc=giulio.benetti@benettiengineering.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox