Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/buysbox: fix build with individual binaries
@ 2019-03-30  8:46 Yann E. MORIN
  2019-03-30 14:08 ` Thomas Petazzoni
  2019-03-30 19:55 ` Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Yann E. MORIN @ 2019-03-30  8:46 UTC (permalink / raw)
  To: buildroot

Fixes:
    http://autobuild.buildroot.org/results/053/0539b3765eaa99029c4185ae89db6adb9e867078/

Kudos to Thomas for pinpointing the actual issue.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Peter Korsgaard <peter@korsgaard.com>

---
Peter, this is a candidate for 2019.02.x.
---
 ...-mark-scripted_main-as-externally-visible.patch | 53 ++++++++++++++++++++++
 1 file changed, 53 insertions(+)
 create mode 100644 package/busybox/0003-libbb-mark-scripted_main-as-externally-visible.patch

diff --git a/package/busybox/0003-libbb-mark-scripted_main-as-externally-visible.patch b/package/busybox/0003-libbb-mark-scripted_main-as-externally-visible.patch
new file mode 100644
index 0000000000..d3b174dd4a
--- /dev/null
+++ b/package/busybox/0003-libbb-mark-scripted_main-as-externally-visible.patch
@@ -0,0 +1,53 @@
+From eb5830223d452944b96e526b2f44158bda5c5c56 Mon Sep 17 00:00:00 2001
+From: Ron Yorston <rmy@pobox.com>
+Date: Sat, 30 Mar 2019 07:47:12 +0000
+Subject: [PATCH] libbb: mark scripted_main() as externally visible
+
+Building with individual binaries enabled fails when embedded
+script applets are included:
+
+   /tmp/ccIvMFZg.o: In function `main':
+   applet.c:(.text.main+0x20): undefined reference to `scripted_main'
+
+Mark scripted_main() as externally visible.
+
+Reported-by: Yann E. MORIN <yann.morin.1998@free.fr>
+Signed-off-by: Ron Yorston <rmy@pobox.com>
+Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
+---
+Upstream status: reported, patch pending;
+    http://lists.busybox.net/pipermail/busybox/2019-March/087148.html
+    http://lists.busybox.net/pipermail/busybox/2019-March/087149.html
+---
+ include/libbb.h   | 2 +-
+ libbb/appletlib.c | 1 +
+ 2 files changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/include/libbb.h b/include/libbb.h
+index e0d5521e4..a20d5e403 100644
+--- a/include/libbb.h
++++ b/include/libbb.h
+@@ -1347,7 +1347,7 @@ void bb_logenv_override(void) FAST_FUNC;
+ 
+ /* Embedded script support */
+ char *get_script_content(unsigned n) FAST_FUNC;
+-int scripted_main(int argc, char** argv);
++int scripted_main(int argc, char** argv) MAIN_EXTERNALLY_VISIBLE;
+ 
+ /* Applets which are useful from another applets */
+ int bb_cat(char** argv) FAST_FUNC;
+diff --git a/libbb/appletlib.c b/libbb/appletlib.c
+index c15014a34..fa19e8488 100644
+--- a/libbb/appletlib.c
++++ b/libbb/appletlib.c
+@@ -770,6 +770,7 @@ static int find_script_by_name(const char *name)
+ 	return -1;
+ }
+ 
++int scripted_main(int argc UNUSED_PARAM, char **argv) MAIN_EXTERNALLY_VISIBLE;
+ int scripted_main(int argc UNUSED_PARAM, char **argv)
+ {
+ 	int script = find_script_by_name(applet_name);
+-- 
+2.14.1
+
-- 
2.14.1

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

* [Buildroot] [PATCH] package/buysbox: fix build with individual binaries
  2019-03-30  8:46 [Buildroot] [PATCH] package/buysbox: fix build with individual binaries Yann E. MORIN
@ 2019-03-30 14:08 ` Thomas Petazzoni
  2019-03-30 19:55 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2019-03-30 14:08 UTC (permalink / raw)
  To: buildroot

On Sat, 30 Mar 2019 09:46:41 +0100
"Yann E. MORIN" <yann.morin.1998@free.fr> wrote:

> Fixes:
>     http://autobuild.buildroot.org/results/053/0539b3765eaa99029c4185ae89db6adb9e867078/
> 
> Kudos to Thomas for pinpointing the actual issue.
> 
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> Cc: Peter Korsgaard <peter@korsgaard.com>
> 
> ---
> Peter, this is a candidate for 2019.02.x.
> ---
>  ...-mark-scripted_main-as-externally-visible.patch | 53 ++++++++++++++++++++++
>  1 file changed, 53 insertions(+)
>  create mode 100644 package/busybox/0003-libbb-mark-scripted_main-as-externally-visible.patch

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH] package/buysbox: fix build with individual binaries
  2019-03-30  8:46 [Buildroot] [PATCH] package/buysbox: fix build with individual binaries Yann E. MORIN
  2019-03-30 14:08 ` Thomas Petazzoni
@ 2019-03-30 19:55 ` Peter Korsgaard
  2019-03-30 20:02   ` Yann E. MORIN
  1 sibling, 1 reply; 4+ messages in thread
From: Peter Korsgaard @ 2019-03-30 19:55 UTC (permalink / raw)
  To: buildroot

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 > Fixes:
 >     http://autobuild.buildroot.org/results/053/0539b3765eaa99029c4185ae89db6adb9e867078/

 > Kudos to Thomas for pinpointing the actual issue.

 > Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
 > Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
 > Cc: Peter Korsgaard <peter@korsgaard.com>

 > ---
 > Peter, this is a candidate for 2019.02.x.

Sure? This issue afaik got introduced by the bump to 1.30.1.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] package/buysbox: fix build with individual binaries
  2019-03-30 19:55 ` Peter Korsgaard
@ 2019-03-30 20:02   ` Yann E. MORIN
  0 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2019-03-30 20:02 UTC (permalink / raw)
  To: buildroot

Peter, All,

On 2019-03-30 20:55 +0100, Peter Korsgaard spake thusly:
> >>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
>  > Fixes:
>  >     http://autobuild.buildroot.org/results/053/0539b3765eaa99029c4185ae89db6adb9e867078/
>  > ---
>  > Peter, this is a candidate for 2019.02.x.
> Sure? This issue afaik got introduced by the bump to 1.30.1.

Dang, I am pretty sure I did checkout 2019.02 before sending this, but
it seems I failed somewhere... Indeed, it's only for master. Sorry...

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

end of thread, other threads:[~2019-03-30 20:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-30  8:46 [Buildroot] [PATCH] package/buysbox: fix build with individual binaries Yann E. MORIN
2019-03-30 14:08 ` Thomas Petazzoni
2019-03-30 19:55 ` Peter Korsgaard
2019-03-30 20:02   ` Yann E. MORIN

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