DistroKit Mailinglist
 help / color / mirror / Atom feed
* [DistroKit] [PATCH 1/2] ptxdist: remove nonexistent config symbol
@ 2019-05-07  8:50 Roland Hieber
  2019-05-07  8:50 ` [DistroKit] [PATCH 2/2] busybox: support reverse hexdump functionality Roland Hieber
  2019-05-07 17:05 ` [DistroKit] [PATCH 1/2] ptxdist: remove nonexistent config symbol Robert Schwebel
  0 siblings, 2 replies; 4+ messages in thread
From: Roland Hieber @ 2019-05-07  8:50 UTC (permalink / raw)
  To: distrokit; +Cc: Roland Hieber

This symbol is not part of PTXdist 2019.05.0, it cannot be found in
menuconfig, and is removed as soon as saving changes. It probably
slipped in due to local changes in the working tree during the PTXdist
update.

Fixes: 643f557226e15c4a2ec8 ("ptxdist: version bump 2019.04.0 → 2019.05.0")
Signed-off-by: Roland Hieber <rhi@pengutronix.de>
---
 configs/ptxconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/configs/ptxconfig b/configs/ptxconfig
index 3a005d79a29a..925863c6c0ad 100644
--- a/configs/ptxconfig
+++ b/configs/ptxconfig
@@ -2054,7 +2054,6 @@ PTXCONF_ZLIB=y
 # Middleware                    
 #
 # PTXCONF_BUSTLE is not set
-PTXCONF_DBUS_BROKER=y
 # PTXCONF_DBUS_GLIB is not set
 PTXCONF_DBUS=y
 PTXCONF_DBUS_SYSTEMD=y
-- 
2.20.1


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [DistroKit] [PATCH 2/2] busybox: support reverse hexdump functionality
  2019-05-07  8:50 [DistroKit] [PATCH 1/2] ptxdist: remove nonexistent config symbol Roland Hieber
@ 2019-05-07  8:50 ` Roland Hieber
  2019-05-07 17:06   ` Robert Schwebel
  2019-05-07 17:05 ` [DistroKit] [PATCH 1/2] ptxdist: remove nonexistent config symbol Robert Schwebel
  1 sibling, 1 reply; 4+ messages in thread
From: Roland Hieber @ 2019-05-07  8:50 UTC (permalink / raw)
  To: distrokit; +Cc: Roland Hieber

With the -R option, hexdump can read its own output back and write to a
file, so it can serve as a fallback to transfer files to the target when
nothing more than a serial console is available.

Signed-off-by: Roland Hieber <rhi@pengutronix.de>
---
 configs/ptxconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/ptxconfig b/configs/ptxconfig
index 925863c6c0ad..37d6a766afd8 100644
--- a/configs/ptxconfig
+++ b/configs/ptxconfig
@@ -890,7 +890,7 @@ PTXCONF_BUSYBOX_FSFREEZE=y
 # PTXCONF_BUSYBOX_FSTRIM is not set
 # PTXCONF_BUSYBOX_GETOPT is not set
 PTXCONF_BUSYBOX_HEXDUMP=y
-# PTXCONF_BUSYBOX_FEATURE_HEXDUMP_REVERSE is not set
+PTXCONF_BUSYBOX_FEATURE_HEXDUMP_REVERSE=y
 # PTXCONF_BUSYBOX_HD is not set
 # PTXCONF_BUSYBOX_XXD is not set
 # PTXCONF_BUSYBOX_HWCLOCK is not set
-- 
2.20.1


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [DistroKit] [PATCH 1/2] ptxdist: remove nonexistent config symbol
  2019-05-07  8:50 [DistroKit] [PATCH 1/2] ptxdist: remove nonexistent config symbol Roland Hieber
  2019-05-07  8:50 ` [DistroKit] [PATCH 2/2] busybox: support reverse hexdump functionality Roland Hieber
@ 2019-05-07 17:05 ` Robert Schwebel
  1 sibling, 0 replies; 4+ messages in thread
From: Robert Schwebel @ 2019-05-07 17:05 UTC (permalink / raw)
  To: Roland Hieber; +Cc: distrokit

Hi Rohieb,

On Tue, May 07, 2019 at 10:50:46AM +0200, Roland Hieber wrote:
> This symbol is not part of PTXdist 2019.05.0, it cannot be found in
> menuconfig, and is removed as soon as saving changes. It probably
> slipped in due to local changes in the working tree during the PTXdist
> update.
> 
> Fixes: 643f557226e15c4a2ec8 ("ptxdist: version bump 2019.04.0 → 2019.05.0")
> Signed-off-by: Roland Hieber <rhi@pengutronix.de>
> ---
>  configs/ptxconfig | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/configs/ptxconfig b/configs/ptxconfig
> index 3a005d79a29a..925863c6c0ad 100644
> --- a/configs/ptxconfig
> +++ b/configs/ptxconfig
> @@ -2054,7 +2054,6 @@ PTXCONF_ZLIB=y
>  # Middleware                    
>  #
>  # PTXCONF_BUSTLE is not set
> -PTXCONF_DBUS_BROKER=y
>  # PTXCONF_DBUS_GLIB is not set
>  PTXCONF_DBUS=y
>  PTXCONF_DBUS_SYSTEMD=y
> -- 
> 2.20.1

Applied, thanks.

rsc
-- 
Pengutronix e.K.                           | Dipl.-Ing. Robert Schwebel  |
Industrial Linux Solutions                 | https://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [DistroKit] [PATCH 2/2] busybox: support reverse hexdump functionality
  2019-05-07  8:50 ` [DistroKit] [PATCH 2/2] busybox: support reverse hexdump functionality Roland Hieber
@ 2019-05-07 17:06   ` Robert Schwebel
  0 siblings, 0 replies; 4+ messages in thread
From: Robert Schwebel @ 2019-05-07 17:06 UTC (permalink / raw)
  To: Roland Hieber; +Cc: distrokit

Hi Rohieb,

On Tue, May 07, 2019 at 10:50:47AM +0200, Roland Hieber wrote:
> With the -R option, hexdump can read its own output back and write to a
> file, so it can serve as a fallback to transfer files to the target when
> nothing more than a serial console is available.
> 
> Signed-off-by: Roland Hieber <rhi@pengutronix.de>
> ---
>  configs/ptxconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/configs/ptxconfig b/configs/ptxconfig
> index 925863c6c0ad..37d6a766afd8 100644
> --- a/configs/ptxconfig
> +++ b/configs/ptxconfig
> @@ -890,7 +890,7 @@ PTXCONF_BUSYBOX_FSFREEZE=y
>  # PTXCONF_BUSYBOX_FSTRIM is not set
>  # PTXCONF_BUSYBOX_GETOPT is not set
>  PTXCONF_BUSYBOX_HEXDUMP=y
> -# PTXCONF_BUSYBOX_FEATURE_HEXDUMP_REVERSE is not set
> +PTXCONF_BUSYBOX_FEATURE_HEXDUMP_REVERSE=y
>  # PTXCONF_BUSYBOX_HD is not set
>  # PTXCONF_BUSYBOX_XXD is not set
>  # PTXCONF_BUSYBOX_HWCLOCK is not set
> -- 
> 2.20.1

I already pushed the same commit as 146540d4c3636a9c3866a617bf7bf1c166ff8933 yesterday.

rsc
-- 
Pengutronix e.K.                           | Dipl.-Ing. Robert Schwebel  |
Industrial Linux Solutions                 | https://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-05-07 17:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-07  8:50 [DistroKit] [PATCH 1/2] ptxdist: remove nonexistent config symbol Roland Hieber
2019-05-07  8:50 ` [DistroKit] [PATCH 2/2] busybox: support reverse hexdump functionality Roland Hieber
2019-05-07 17:06   ` Robert Schwebel
2019-05-07 17:05 ` [DistroKit] [PATCH 1/2] ptxdist: remove nonexistent config symbol Robert Schwebel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox