* [Buildroot] [PATCH 1/1] mono: remove copy of host etc files on install
@ 2017-03-15 2:24 Dustin Johnson
2017-03-18 14:39 ` Thomas Petazzoni
` (2 more replies)
0 siblings, 3 replies; 11+ messages in thread
From: Dustin Johnson @ 2017-03-15 2:24 UTC (permalink / raw)
To: buildroot
When the mono package is installed, the autotools installer installs
the /etc/mono files to the target. A post_install hook then copies
over the mono libraries to the target as well as the host /etc/mono
files which overrides the target files. The target specific mono
configuration file (/etc/mono/config) is overridden with the host
settings. This causes mono on the target to be unable to locate target
specific .so files as it overrides the changes enacted by the patches
for the package.
Signed-off-by: Dustin Johnson <dustin.r.johnson@gmail.com>
---
package/mono/mono.mk | 1 -
1 file changed, 1 deletion(-)
diff --git a/package/mono/mono.mk b/package/mono/mono.mk
index 20b920568..4996b7c60 100644
--- a/package/mono/mono.mk
+++ b/package/mono/mono.mk
@@ -31,7 +31,6 @@ MONO_CONF_OPTS = --disable-gtk-doc \
define MONO_INSTALL_LIBS
rsync -av --exclude=*.so --exclude=*.mdb \
$(HOST_DIR)/usr/lib/mono $(TARGET_DIR)/usr/lib/
- rsync -av $(HOST_DIR)/etc/mono $(TARGET_DIR)/etc
endef
MONO_POST_INSTALL_TARGET_HOOKS += MONO_INSTALL_LIBS
--
2.12.0.windows.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* [Buildroot] [PATCH 1/1] mono: remove copy of host etc files on install 2017-03-15 2:24 [Buildroot] [PATCH 1/1] mono: remove copy of host etc files on install Dustin Johnson @ 2017-03-18 14:39 ` Thomas Petazzoni 2017-03-19 16:17 ` Dusty 2017-05-22 14:52 ` Angelo Compagnucci 2017-05-23 14:29 ` Thomas Petazzoni 2 siblings, 1 reply; 11+ messages in thread From: Thomas Petazzoni @ 2017-03-18 14:39 UTC (permalink / raw) To: buildroot Hello, Angelo, could you comment on this patch touching the Mono package? Copying $(HOST_DIR)/etc/mono to $(TARGET_DIR)/etc has been there since you contributed the package, but apparently causes some issues. It would be nice if you could have a look at the patch proposed by Dustin. Thanks a lot! Thomas On Tue, 14 Mar 2017 22:24:58 -0400, Dustin Johnson wrote: > When the mono package is installed, the autotools installer installs > the /etc/mono files to the target. A post_install hook then copies > over the mono libraries to the target as well as the host /etc/mono > files which overrides the target files. The target specific mono > configuration file (/etc/mono/config) is overridden with the host > settings. This causes mono on the target to be unable to locate target > specific .so files as it overrides the changes enacted by the patches > for the package. > > Signed-off-by: Dustin Johnson <dustin.r.johnson@gmail.com> > --- > package/mono/mono.mk | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/package/mono/mono.mk b/package/mono/mono.mk > index 20b920568..4996b7c60 100644 > --- a/package/mono/mono.mk > +++ b/package/mono/mono.mk > @@ -31,7 +31,6 @@ MONO_CONF_OPTS = --disable-gtk-doc \ > define MONO_INSTALL_LIBS > rsync -av --exclude=*.so --exclude=*.mdb \ > $(HOST_DIR)/usr/lib/mono $(TARGET_DIR)/usr/lib/ > - rsync -av $(HOST_DIR)/etc/mono $(TARGET_DIR)/etc > endef > > MONO_POST_INSTALL_TARGET_HOOKS += MONO_INSTALL_LIBS -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] [PATCH 1/1] mono: remove copy of host etc files on install 2017-03-18 14:39 ` Thomas Petazzoni @ 2017-03-19 16:17 ` Dusty 2017-04-06 17:05 ` Angelo Compagnucci 2017-04-06 17:08 ` Angelo Compagnucci 0 siblings, 2 replies; 11+ messages in thread From: Dusty @ 2017-03-19 16:17 UTC (permalink / raw) To: buildroot Angelo, Below is the diff between staging and host. I am using a Ubuntu VM to compile for an ARM target with uCLibc. The appropriate .so files (libc.so.0) are referenced in the config file in the staging directory but not in the host. The patch I referenced in my commit is: * package/mono/0002-Adjust-libc.so-path-depending-on-C-library-being-use.patch This patch addresses the proper generation of the /etc/mono/config file in the staging directory, I believe. Thanks! Dusty diff -u output/host/etc/mono/ output/staging/etc/mono/ Common subdirectories: output/host/etc/mono/2.0 and output/staging/etc/mono/2.0 Common subdirectories: output/host/etc/mono/4.0 and output/staging/etc/mono/4.0 Common subdirectories: output/host/etc/mono/4.5 and output/staging/etc/mono/4.5 diff -u output/host/etc/mono/config output/staging/etc/mono/config --- output/host/etc/mono/config 2017-03-12 22:53:07.450555843 +0000 +++ output/staging/etc/mono/config 2017-03-15 02:31:40.272008856 +0000 @@ -1,9 +1,9 @@ <configuration> - <dllmap dll="i:cygwin1.dll" target="libc.so.6" os="!windows" /> - <dllmap dll="libc" target="libc.so.6" os="!windows"/> + <dllmap dll="i:cygwin1.dll" target="libc.so.0" os="!windows" /> + <dllmap dll="libc" target="libc.so.0" os="!windows"/> <dllmap dll="intl" target="libc.so.6" os="!windows"/> - <dllmap dll="intl" name="bind_textdomain_codeset" target="libc.so.6" os="solaris"/> - <dllmap dll="libintl" name="bind_textdomain_codeset" target="libc.so.6" os="solaris"/> + <dllmap dll="intl" name="bind_textdomain_codeset" target="libc.so.0" os="solaris"/> + <dllmap dll="libintl" name="bind_textdomain_codeset" target="libc.so.0" os="solaris"/> <dllmap dll="libintl" target="libc.so.6" os="!windows"/> <dllmap dll="i:libxslt.dll" target="libxslt.so" os="!windows"/> <dllmap dll="i:odbc32.dll" target="libodbc.so" os="!windows"/> @@ -11,11 +11,11 @@ <dllmap dll="oci" target="libclntsh.so" os="!windows"/> <dllmap dll="db2cli" target="libdb2_36.so" os="!windows"/> <dllmap dll="MonoPosixHelper" target="$mono_libdir/libMonoPosixHelper.so" os="!windows" /> - <dllmap dll="i:msvcrt" target="libc.so.6" os="!windows"/> - <dllmap dll="i:msvcrt.dll" target="libc.so.6" os="!windows"/> + <dllmap dll="i:msvcrt" target="libc.so.0" os="!windows"/> + <dllmap dll="i:msvcrt.dll" target="libc.so.0" os="!windows"/> <dllmap dll="sqlite" target="libsqlite.so.0" os="!windows"/> <dllmap dll="sqlite3" target="libsqlite3.so.0" os="!windows"/> - <dllmap dll="libX11" target="libX11.so.6" os="!windows" /> + <dllmap dll="libX11" target="libX11.so" os="!windows" /> <dllmap dll="libgdk-x11-2.0" target="libgdk-x11-2.0.so.0" os="!windows"/> <dllmap dll="libgtk-x11-2.0" target="libgtk-x11-2.0.so.0" os="!windows"/> <dllmap dll="libXinerama" target="libXinerama.so.1" os="!windows" /> Only in output/host/etc/mono/: mconfig On Sat, Mar 18, 2017 at 10:39 AM, Thomas Petazzoni < thomas.petazzoni@free-electrons.com> wrote: > Hello, > > Angelo, could you comment on this patch touching the Mono package? > > Copying $(HOST_DIR)/etc/mono to $(TARGET_DIR)/etc has been there since > you contributed the package, but apparently causes some issues. It > would be nice if you could have a look at the patch proposed by Dustin. > > Thanks a lot! > > Thomas > > On Tue, 14 Mar 2017 22:24:58 -0400, Dustin Johnson wrote: > > When the mono package is installed, the autotools installer installs > > the /etc/mono files to the target. A post_install hook then copies > > over the mono libraries to the target as well as the host /etc/mono > > files which overrides the target files. The target specific mono > > configuration file (/etc/mono/config) is overridden with the host > > settings. This causes mono on the target to be unable to locate target > > specific .so files as it overrides the changes enacted by the patches > > for the package. > > > > Signed-off-by: Dustin Johnson <dustin.r.johnson@gmail.com> > > --- > > package/mono/mono.mk | 1 - > > 1 file changed, 1 deletion(-) > > > > diff --git a/package/mono/mono.mk b/package/mono/mono.mk > > index 20b920568..4996b7c60 100644 > > --- a/package/mono/mono.mk > > +++ b/package/mono/mono.mk > > @@ -31,7 +31,6 @@ MONO_CONF_OPTS = --disable-gtk-doc \ > > define MONO_INSTALL_LIBS > > rsync -av --exclude=*.so --exclude=*.mdb \ > > $(HOST_DIR)/usr/lib/mono $(TARGET_DIR)/usr/lib/ > > - rsync -av $(HOST_DIR)/etc/mono $(TARGET_DIR)/etc > > endef > > > > MONO_POST_INSTALL_TARGET_HOOKS += MONO_INSTALL_LIBS > > > > -- > Thomas Petazzoni, CTO, Free Electrons > Embedded Linux and Kernel engineering > http://free-electrons.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20170319/fe5a6ee2/attachment.html> ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] [PATCH 1/1] mono: remove copy of host etc files on install 2017-03-19 16:17 ` Dusty @ 2017-04-06 17:05 ` Angelo Compagnucci 2017-04-06 17:08 ` Angelo Compagnucci 1 sibling, 0 replies; 11+ messages in thread From: Angelo Compagnucci @ 2017-04-06 17:05 UTC (permalink / raw) To: buildroot Dusty, Thomas, 2017-03-19 17:17 GMT+01:00 Dusty <dustin.r.johnson@gmail.com>: > Angelo, > > Below is the diff between staging and host. I am using a Ubuntu VM to > compile for an ARM target with uCLibc. > The appropriate .so files (libc.so.0) are referenced in the config file in > the staging directory but not in the host. > The patch I referenced in my commit is: > * package/mono/0002-Adjust-libc.so-path-depending-on-C- > library-being-use.patch > This patch addresses the proper generation of the /etc/mono/config file in > the staging directory, I believe. > > Thanks! > I'm looking at this but honestly I don't remember too much of it! > > Dusty > > > diff -u output/host/etc/mono/ output/staging/etc/mono/ > Common subdirectories: output/host/etc/mono/2.0 and > output/staging/etc/mono/2.0 > Common subdirectories: output/host/etc/mono/4.0 and > output/staging/etc/mono/4.0 > Common subdirectories: output/host/etc/mono/4.5 and > output/staging/etc/mono/4.5 > diff -u output/host/etc/mono/config output/staging/etc/mono/config > --- output/host/etc/mono/config 2017-03-12 22:53:07.450555843 +0000 > +++ output/staging/etc/mono/config 2017-03-15 02:31:40.272008856 +0000 > @@ -1,9 +1,9 @@ > <configuration> > - <dllmap dll="i:cygwin1.dll" target="libc.so.6" os="!windows" /> > - <dllmap dll="libc" target="libc.so.6" os="!windows"/> > + <dllmap dll="i:cygwin1.dll" target="libc.so.0" os="!windows" /> > + <dllmap dll="libc" target="libc.so.0" os="!windows"/> > <dllmap dll="intl" target="libc.so.6" os="!windows"/> > - <dllmap dll="intl" name="bind_textdomain_codeset" > target="libc.so.6" os="solaris"/> > - <dllmap dll="libintl" name="bind_textdomain_codeset" > target="libc.so.6" os="solaris"/> > + <dllmap dll="intl" name="bind_textdomain_codeset" > target="libc.so.0" os="solaris"/> > + <dllmap dll="libintl" name="bind_textdomain_codeset" > target="libc.so.0" os="solaris"/> > <dllmap dll="libintl" target="libc.so.6" os="!windows"/> > <dllmap dll="i:libxslt.dll" target="libxslt.so" os="!windows"/> > <dllmap dll="i:odbc32.dll" target="libodbc.so" os="!windows"/> > @@ -11,11 +11,11 @@ > <dllmap dll="oci" target="libclntsh.so" os="!windows"/> > <dllmap dll="db2cli" target="libdb2_36.so" os="!windows"/> > <dllmap dll="MonoPosixHelper" target="$mono_libdir/libMonoPosixHelper.so" > os="!windows" /> > - <dllmap dll="i:msvcrt" target="libc.so.6" os="!windows"/> > - <dllmap dll="i:msvcrt.dll" target="libc.so.6" os="!windows"/> > + <dllmap dll="i:msvcrt" target="libc.so.0" os="!windows"/> > + <dllmap dll="i:msvcrt.dll" target="libc.so.0" os="!windows"/> > <dllmap dll="sqlite" target="libsqlite.so.0" os="!windows"/> > <dllmap dll="sqlite3" target="libsqlite3.so.0" os="!windows"/> > - <dllmap dll="libX11" target="libX11.so.6" os="!windows" /> > + <dllmap dll="libX11" target="libX11.so" os="!windows" /> > <dllmap dll="libgdk-x11-2.0" target="libgdk-x11-2.0.so.0" > os="!windows"/> > <dllmap dll="libgtk-x11-2.0" target="libgtk-x11-2.0.so.0" > os="!windows"/> > <dllmap dll="libXinerama" target="libXinerama.so.1" os="!windows" > /> > Only in output/host/etc/mono/: mconfig > > > On Sat, Mar 18, 2017 at 10:39 AM, Thomas Petazzoni <thomas.petazzoni@free- > electrons.com> wrote: > >> Hello, >> >> Angelo, could you comment on this patch touching the Mono package? >> >> Copying $(HOST_DIR)/etc/mono to $(TARGET_DIR)/etc has been there since >> you contributed the package, but apparently causes some issues. It >> would be nice if you could have a look at the patch proposed by Dustin. >> >> Thanks a lot! >> >> Thomas >> >> On Tue, 14 Mar 2017 22:24:58 -0400, Dustin Johnson wrote: >> > When the mono package is installed, the autotools installer installs >> > the /etc/mono files to the target. A post_install hook then copies >> > over the mono libraries to the target as well as the host /etc/mono >> > files which overrides the target files. The target specific mono >> > configuration file (/etc/mono/config) is overridden with the host >> > settings. This causes mono on the target to be unable to locate target >> > specific .so files as it overrides the changes enacted by the patches >> > for the package. >> > >> > Signed-off-by: Dustin Johnson <dustin.r.johnson@gmail.com> >> > --- >> > package/mono/mono.mk | 1 - >> > 1 file changed, 1 deletion(-) >> > >> > diff --git a/package/mono/mono.mk b/package/mono/mono.mk >> > index 20b920568..4996b7c60 100644 >> > --- a/package/mono/mono.mk >> > +++ b/package/mono/mono.mk >> > @@ -31,7 +31,6 @@ MONO_CONF_OPTS = --disable-gtk-doc \ >> > define MONO_INSTALL_LIBS >> > rsync -av --exclude=*.so --exclude=*.mdb \ >> > $(HOST_DIR)/usr/lib/mono $(TARGET_DIR)/usr/lib/ >> > - rsync -av $(HOST_DIR)/etc/mono $(TARGET_DIR)/etc >> > endef >> > >> > MONO_POST_INSTALL_TARGET_HOOKS += MONO_INSTALL_LIBS >> >> >> >> -- >> Thomas Petazzoni, CTO, Free Electrons >> Embedded Linux and Kernel engineering >> http://free-electrons.com >> > > -- Profile: http://it.linkedin.com/in/compagnucciangelo -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20170406/35c60a32/attachment.html> ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] [PATCH 1/1] mono: remove copy of host etc files on install 2017-03-19 16:17 ` Dusty 2017-04-06 17:05 ` Angelo Compagnucci @ 2017-04-06 17:08 ` Angelo Compagnucci 2017-04-08 3:04 ` Dustin Johnson 2017-05-13 13:27 ` Thomas Petazzoni 1 sibling, 2 replies; 11+ messages in thread From: Angelo Compagnucci @ 2017-04-06 17:08 UTC (permalink / raw) To: buildroot Dusty, 2017-03-19 17:17 GMT+01:00 Dusty <dustin.r.johnson@gmail.com>: > Angelo, > > Below is the diff between staging and host. I am using a Ubuntu VM to > compile for an ARM target with uCLibc. > The appropriate .so files (libc.so.0) are referenced in the config file in > the staging directory but not in the host. > The patch I referenced in my commit is: > * package/mono/0002-Adjust-libc.so-path-depending-on-C- > library-being-use.patch > This patch addresses the proper generation of the /etc/mono/config file in > the staging directory, I believe. > > Thanks! > Could you send me a minimal example that exibits the problem?! Thanks! > > Dusty > > > diff -u output/host/etc/mono/ output/staging/etc/mono/ > Common subdirectories: output/host/etc/mono/2.0 and > output/staging/etc/mono/2.0 > Common subdirectories: output/host/etc/mono/4.0 and > output/staging/etc/mono/4.0 > Common subdirectories: output/host/etc/mono/4.5 and > output/staging/etc/mono/4.5 > diff -u output/host/etc/mono/config output/staging/etc/mono/config > --- output/host/etc/mono/config 2017-03-12 22:53:07.450555843 +0000 > +++ output/staging/etc/mono/config 2017-03-15 02:31:40.272008856 +0000 > @@ -1,9 +1,9 @@ > <configuration> > - <dllmap dll="i:cygwin1.dll" target="libc.so.6" os="!windows" /> > - <dllmap dll="libc" target="libc.so.6" os="!windows"/> > + <dllmap dll="i:cygwin1.dll" target="libc.so.0" os="!windows" /> > + <dllmap dll="libc" target="libc.so.0" os="!windows"/> > <dllmap dll="intl" target="libc.so.6" os="!windows"/> > - <dllmap dll="intl" name="bind_textdomain_codeset" > target="libc.so.6" os="solaris"/> > - <dllmap dll="libintl" name="bind_textdomain_codeset" > target="libc.so.6" os="solaris"/> > + <dllmap dll="intl" name="bind_textdomain_codeset" > target="libc.so.0" os="solaris"/> > + <dllmap dll="libintl" name="bind_textdomain_codeset" > target="libc.so.0" os="solaris"/> > <dllmap dll="libintl" target="libc.so.6" os="!windows"/> > <dllmap dll="i:libxslt.dll" target="libxslt.so" os="!windows"/> > <dllmap dll="i:odbc32.dll" target="libodbc.so" os="!windows"/> > @@ -11,11 +11,11 @@ > <dllmap dll="oci" target="libclntsh.so" os="!windows"/> > <dllmap dll="db2cli" target="libdb2_36.so" os="!windows"/> > <dllmap dll="MonoPosixHelper" target="$mono_libdir/libMonoPosixHelper.so" > os="!windows" /> > - <dllmap dll="i:msvcrt" target="libc.so.6" os="!windows"/> > - <dllmap dll="i:msvcrt.dll" target="libc.so.6" os="!windows"/> > + <dllmap dll="i:msvcrt" target="libc.so.0" os="!windows"/> > + <dllmap dll="i:msvcrt.dll" target="libc.so.0" os="!windows"/> > <dllmap dll="sqlite" target="libsqlite.so.0" os="!windows"/> > <dllmap dll="sqlite3" target="libsqlite3.so.0" os="!windows"/> > - <dllmap dll="libX11" target="libX11.so.6" os="!windows" /> > + <dllmap dll="libX11" target="libX11.so" os="!windows" /> > <dllmap dll="libgdk-x11-2.0" target="libgdk-x11-2.0.so.0" > os="!windows"/> > <dllmap dll="libgtk-x11-2.0" target="libgtk-x11-2.0.so.0" > os="!windows"/> > <dllmap dll="libXinerama" target="libXinerama.so.1" os="!windows" > /> > Only in output/host/etc/mono/: mconfig > > > On Sat, Mar 18, 2017 at 10:39 AM, Thomas Petazzoni <thomas.petazzoni@free- > electrons.com> wrote: > >> Hello, >> >> Angelo, could you comment on this patch touching the Mono package? >> >> Copying $(HOST_DIR)/etc/mono to $(TARGET_DIR)/etc has been there since >> you contributed the package, but apparently causes some issues. It >> would be nice if you could have a look at the patch proposed by Dustin. >> >> Thanks a lot! >> >> Thomas >> >> On Tue, 14 Mar 2017 22:24:58 -0400, Dustin Johnson wrote: >> > When the mono package is installed, the autotools installer installs >> > the /etc/mono files to the target. A post_install hook then copies >> > over the mono libraries to the target as well as the host /etc/mono >> > files which overrides the target files. The target specific mono >> > configuration file (/etc/mono/config) is overridden with the host >> > settings. This causes mono on the target to be unable to locate target >> > specific .so files as it overrides the changes enacted by the patches >> > for the package. >> > >> > Signed-off-by: Dustin Johnson <dustin.r.johnson@gmail.com> >> > --- >> > package/mono/mono.mk | 1 - >> > 1 file changed, 1 deletion(-) >> > >> > diff --git a/package/mono/mono.mk b/package/mono/mono.mk >> > index 20b920568..4996b7c60 100644 >> > --- a/package/mono/mono.mk >> > +++ b/package/mono/mono.mk >> > @@ -31,7 +31,6 @@ MONO_CONF_OPTS = --disable-gtk-doc \ >> > define MONO_INSTALL_LIBS >> > rsync -av --exclude=*.so --exclude=*.mdb \ >> > $(HOST_DIR)/usr/lib/mono $(TARGET_DIR)/usr/lib/ >> > - rsync -av $(HOST_DIR)/etc/mono $(TARGET_DIR)/etc >> > endef >> > >> > MONO_POST_INSTALL_TARGET_HOOKS += MONO_INSTALL_LIBS >> >> >> >> -- >> Thomas Petazzoni, CTO, Free Electrons >> Embedded Linux and Kernel engineering >> http://free-electrons.com >> > > -- Profile: http://it.linkedin.com/in/compagnucciangelo -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20170406/39ef81c2/attachment.html> ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] [PATCH 1/1] mono: remove copy of host etc files on install 2017-04-06 17:08 ` Angelo Compagnucci @ 2017-04-08 3:04 ` Dustin Johnson 2017-05-13 13:27 ` Thomas Petazzoni 1 sibling, 0 replies; 11+ messages in thread From: Dustin Johnson @ 2017-04-08 3:04 UTC (permalink / raw) To: buildroot Here is a simple defconfig for the specific board I am using with a fresh checkout from latest Git: BR2_arm=y BR2_cortex_a9=y BR2_ARM_ENABLE_NEON=y BR2_ARM_ENABLE_VFP=y BR2_ARM_FPU_VFPV3=y BR2_ROOTFS_POST_BUILD_SCRIPT="board/udoo/neo/post-build.sh" BR2_ROOTFS_POST_IMAGE_SCRIPT="board/udoo/neo/post-image.sh" BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_VERSION=y BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.10" BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7" BR2_LINUX_KERNEL_DTS_SUPPORT=y BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6sx-udoo-neo-basic imx6sx-udoo-neo-full imx6sx-udoo-neo-extended" BR2_LINUX_KERNEL_INSTALL_TARGET=y BR2_PACKAGE_MONO=y BR2_TARGET_ROOTFS_EXT2=y BR2_TARGET_ROOTFS_EXT2_4=y BR2_TARGET_UBOOT=y BR2_TARGET_UBOOT_BOARDNAME="udoo_neo" BR2_TARGET_UBOOT_CUSTOM_VERSION=y BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2017.01" BR2_TARGET_UBOOT_FORMAT_IMG=y BR2_TARGET_UBOOT_SPL=y BR2_TARGET_UBOOT_SPL_NAME="SPL" BR2_PACKAGE_HOST_DOSFSTOOLS=y BR2_PACKAGE_HOST_GENIMAGE=y BR2_PACKAGE_HOST_MTOOLS=y BR2_PACKAGE_HOST_UBOOT_TOOLS=y And here is what I get from the differences between Staging and Target $ diff -u output/target/etc/mono/ output/staging/etc/mono/ Common subdirectories: output/target/etc/mono/2.0 and output/staging/etc/mono/2.0 Common subdirectories: output/target/etc/mono/4.0 and output/staging/etc/mono/4.0 Common subdirectories: output/target/etc/mono/4.5 and output/staging/etc/mono/4.5 diff -u output/target/etc/mono/config output/staging/etc/mono/config --- output/target/etc/mono/config 2017-04-08 01:46:12.883008999 +0000 +++ output/staging/etc/mono/config 2017-04-08 01:57:03.535008999 +0000 @@ -1,9 +1,9 @@ <configuration> - <dllmap dll="i:cygwin1.dll" target="libc.so.6" os="!windows" /> - <dllmap dll="libc" target="libc.so.6" os="!windows"/> + <dllmap dll="i:cygwin1.dll" target="libc.so.0" os="!windows" /> + <dllmap dll="libc" target="libc.so.0" os="!windows"/> <dllmap dll="intl" target="libc.so.6" os="!windows"/> - <dllmap dll="intl" name="bind_textdomain_codeset" target="libc.so.6" os="solaris"/> - <dllmap dll="libintl" name="bind_textdomain_codeset" target="libc.so.6" os="solaris"/> + <dllmap dll="intl" name="bind_textdomain_codeset" target="libc.so.0" os="solaris"/> + <dllmap dll="libintl" name="bind_textdomain_codeset" target="libc.so.0" os="solaris"/> <dllmap dll="libintl" target="libc.so.6" os="!windows"/> <dllmap dll="i:libxslt.dll" target="libxslt.so" os="!windows"/> <dllmap dll="i:odbc32.dll" target="libodbc.so" os="!windows"/> @@ -11,11 +11,11 @@ <dllmap dll="oci" target="libclntsh.so" os="!windows"/> <dllmap dll="db2cli" target="libdb2_36.so" os="!windows"/> <dllmap dll="MonoPosixHelper" target="$mono_libdir/libMonoPosixHelper.so" os="!windows" /> - <dllmap dll="i:msvcrt" target="libc.so.6" os="!windows"/> - <dllmap dll="i:msvcrt.dll" target="libc.so.6" os="!windows"/> + <dllmap dll="i:msvcrt" target="libc.so.0" os="!windows"/> + <dllmap dll="i:msvcrt.dll" target="libc.so.0" os="!windows"/> <dllmap dll="sqlite" target="libsqlite.so.0" os="!windows"/> <dllmap dll="sqlite3" target="libsqlite3.so.0" os="!windows"/> - <dllmap dll="libX11" target="libX11.so.6" os="!windows" /> + <dllmap dll="libX11" target="libX11.so" os="!windows" /> <dllmap dll="libgdk-x11-2.0" target="libgdk-x11-2.0.so.0" os="!windows"/> <dllmap dll="libgtk-x11-2.0" target="libgtk-x11-2.0.so.0" os="!windows"/> <dllmap dll="libXinerama" target="libXinerama.so.1" os="!windows" /> Only in output/target/etc/mono/: mconfig On Thu, Apr 6, 2017 at 1:08 PM, Angelo Compagnucci < angelo.compagnucci@gmail.com> wrote: > Dusty, > > 2017-03-19 17:17 GMT+01:00 Dusty <dustin.r.johnson@gmail.com>: > >> Angelo, >> >> Below is the diff between staging and host. I am using a Ubuntu VM to >> compile for an ARM target with uCLibc. >> The appropriate .so files (libc.so.0) are referenced in the config file >> in the staging directory but not in the host. >> The patch I referenced in my commit is: >> * package/mono/0002-Adjust-libc.so-path-depending-on-C-library >> -being-use.patch >> This patch addresses the proper generation of the /etc/mono/config file >> in the staging directory, I believe. >> >> Thanks! >> > > Could you send me a minimal example that exibits the problem?! > > Thanks! > > >> >> Dusty >> >> >> diff -u output/host/etc/mono/ output/staging/etc/mono/ >> Common subdirectories: output/host/etc/mono/2.0 and >> output/staging/etc/mono/2.0 >> Common subdirectories: output/host/etc/mono/4.0 and >> output/staging/etc/mono/4.0 >> Common subdirectories: output/host/etc/mono/4.5 and >> output/staging/etc/mono/4.5 >> diff -u output/host/etc/mono/config output/staging/etc/mono/config >> --- output/host/etc/mono/config 2017-03-12 22:53:07.450555843 +0000 >> +++ output/staging/etc/mono/config 2017-03-15 02:31:40.272008856 >> +0000 >> @@ -1,9 +1,9 @@ >> <configuration> >> - <dllmap dll="i:cygwin1.dll" target="libc.so.6" os="!windows" /> >> - <dllmap dll="libc" target="libc.so.6" os="!windows"/> >> + <dllmap dll="i:cygwin1.dll" target="libc.so.0" os="!windows" /> >> + <dllmap dll="libc" target="libc.so.0" os="!windows"/> >> <dllmap dll="intl" target="libc.so.6" os="!windows"/> >> - <dllmap dll="intl" name="bind_textdomain_codeset" >> target="libc.so.6" os="solaris"/> >> - <dllmap dll="libintl" name="bind_textdomain_codeset" >> target="libc.so.6" os="solaris"/> >> + <dllmap dll="intl" name="bind_textdomain_codeset" >> target="libc.so.0" os="solaris"/> >> + <dllmap dll="libintl" name="bind_textdomain_codeset" >> target="libc.so.0" os="solaris"/> >> <dllmap dll="libintl" target="libc.so.6" os="!windows"/> >> <dllmap dll="i:libxslt.dll" target="libxslt.so" os="!windows"/> >> <dllmap dll="i:odbc32.dll" target="libodbc.so" os="!windows"/> >> @@ -11,11 +11,11 @@ >> <dllmap dll="oci" target="libclntsh.so" os="!windows"/> >> <dllmap dll="db2cli" target="libdb2_36.so" os="!windows"/> >> <dllmap dll="MonoPosixHelper" target="$mono_libdir/libMonoPosixHelper.so" >> os="!windows" /> >> - <dllmap dll="i:msvcrt" target="libc.so.6" os="!windows"/> >> - <dllmap dll="i:msvcrt.dll" target="libc.so.6" os="!windows"/> >> + <dllmap dll="i:msvcrt" target="libc.so.0" os="!windows"/> >> + <dllmap dll="i:msvcrt.dll" target="libc.so.0" os="!windows"/> >> <dllmap dll="sqlite" target="libsqlite.so.0" os="!windows"/> >> <dllmap dll="sqlite3" target="libsqlite3.so.0" os="!windows"/> >> - <dllmap dll="libX11" target="libX11.so.6" os="!windows" /> >> + <dllmap dll="libX11" target="libX11.so" os="!windows" /> >> <dllmap dll="libgdk-x11-2.0" target="libgdk-x11-2.0.so.0" >> os="!windows"/> >> <dllmap dll="libgtk-x11-2.0" target="libgtk-x11-2.0.so.0" >> os="!windows"/> >> <dllmap dll="libXinerama" target="libXinerama.so.1" os="!windows" >> /> >> Only in output/host/etc/mono/: mconfig >> >> >> On Sat, Mar 18, 2017 at 10:39 AM, Thomas Petazzoni < >> thomas.petazzoni at free-electrons.com> wrote: >> >>> Hello, >>> >>> Angelo, could you comment on this patch touching the Mono package? >>> >>> Copying $(HOST_DIR)/etc/mono to $(TARGET_DIR)/etc has been there since >>> you contributed the package, but apparently causes some issues. It >>> would be nice if you could have a look at the patch proposed by Dustin. >>> >>> Thanks a lot! >>> >>> Thomas >>> >>> On Tue, 14 Mar 2017 22:24:58 -0400, Dustin Johnson wrote: >>> > When the mono package is installed, the autotools installer installs >>> > the /etc/mono files to the target. A post_install hook then copies >>> > over the mono libraries to the target as well as the host /etc/mono >>> > files which overrides the target files. The target specific mono >>> > configuration file (/etc/mono/config) is overridden with the host >>> > settings. This causes mono on the target to be unable to locate target >>> > specific .so files as it overrides the changes enacted by the patches >>> > for the package. >>> > >>> > Signed-off-by: Dustin Johnson <dustin.r.johnson@gmail.com> >>> > --- >>> > package/mono/mono.mk | 1 - >>> > 1 file changed, 1 deletion(-) >>> > >>> > diff --git a/package/mono/mono.mk b/package/mono/mono.mk >>> > index 20b920568..4996b7c60 100644 >>> > --- a/package/mono/mono.mk >>> > +++ b/package/mono/mono.mk >>> > @@ -31,7 +31,6 @@ MONO_CONF_OPTS = --disable-gtk-doc \ >>> > define MONO_INSTALL_LIBS >>> > rsync -av --exclude=*.so --exclude=*.mdb \ >>> > $(HOST_DIR)/usr/lib/mono $(TARGET_DIR)/usr/lib/ >>> > - rsync -av $(HOST_DIR)/etc/mono $(TARGET_DIR)/etc >>> > endef >>> > >>> > MONO_POST_INSTALL_TARGET_HOOKS += MONO_INSTALL_LIBS >>> >>> >>> >>> -- >>> Thomas Petazzoni, CTO, Free Electrons >>> Embedded Linux and Kernel engineering >>> http://free-electrons.com >>> >> >> > > > -- > Profile: http://it.linkedin.com/in/compagnucciangelo > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20170407/ff1a6dc5/attachment.html> ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] [PATCH 1/1] mono: remove copy of host etc files on install 2017-04-06 17:08 ` Angelo Compagnucci 2017-04-08 3:04 ` Dustin Johnson @ 2017-05-13 13:27 ` Thomas Petazzoni 2017-05-22 14:53 ` Angelo Compagnucci 1 sibling, 1 reply; 11+ messages in thread From: Thomas Petazzoni @ 2017-05-13 13:27 UTC (permalink / raw) To: buildroot Angelo, On Thu, 6 Apr 2017 19:08:35 +0200, Angelo Compagnucci wrote: > > Below is the diff between staging and host. I am using a Ubuntu VM to > > compile for an ARM target with uCLibc. > > The appropriate .so files (libc.so.0) are referenced in the config file in > > the staging directory but not in the host. > > The patch I referenced in my commit is: > > * package/mono/0002-Adjust-libc.so-path-depending-on-C- > > library-being-use.patch > > This patch addresses the proper generation of the /etc/mono/config file in > > the staging directory, I believe. > > > > Thanks! > > > > Could you send me a minimal example that exibits the problem?! Do you have some further feedback on this issue? Dustin's patch is still pending, waiting for you to confirm or not the issue and indicate if Dustin's solution is the most appropriate or not. Thanks for your feedback, Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] [PATCH 1/1] mono: remove copy of host etc files on install 2017-05-13 13:27 ` Thomas Petazzoni @ 2017-05-22 14:53 ` Angelo Compagnucci 0 siblings, 0 replies; 11+ messages in thread From: Angelo Compagnucci @ 2017-05-22 14:53 UTC (permalink / raw) To: buildroot Dear Thomas, Dusty, 2017-05-13 15:27 GMT+02:00 Thomas Petazzoni <thomas.petazzoni@free-electrons.com>: > Angelo, > > On Thu, 6 Apr 2017 19:08:35 +0200, Angelo Compagnucci wrote: > >> > Below is the diff between staging and host. I am using a Ubuntu VM to >> > compile for an ARM target with uCLibc. >> > The appropriate .so files (libc.so.0) are referenced in the config file in >> > the staging directory but not in the host. >> > The patch I referenced in my commit is: >> > * package/mono/0002-Adjust-libc.so-path-depending-on-C- >> > library-being-use.patch >> > This patch addresses the proper generation of the /etc/mono/config file in >> > the staging directory, I believe. >> > >> > Thanks! >> > >> >> Could you send me a minimal example that exibits the problem?! > > Do you have some further feedback on this issue? Dustin's patch is > still pending, waiting for you to confirm or not the issue and indicate > if Dustin's solution is the most appropriate or not. Sorry for the late reply. The patch is good, I tested it and it solves a real bug. Great Dustin that nailed it, good catch! > Thanks for your feedback, > > Thomas > -- > Thomas Petazzoni, CTO, Free Electrons > Embedded Linux and Kernel engineering > http://free-electrons.com -- Profile: http://it.linkedin.com/in/compagnucciangelo ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] [PATCH 1/1] mono: remove copy of host etc files on install 2017-03-15 2:24 [Buildroot] [PATCH 1/1] mono: remove copy of host etc files on install Dustin Johnson 2017-03-18 14:39 ` Thomas Petazzoni @ 2017-05-22 14:52 ` Angelo Compagnucci 2017-06-01 14:15 ` Peter Korsgaard 2017-05-23 14:29 ` Thomas Petazzoni 2 siblings, 1 reply; 11+ messages in thread From: Angelo Compagnucci @ 2017-05-22 14:52 UTC (permalink / raw) To: buildroot 2017-03-15 3:24 GMT+01:00 Dustin Johnson <dustin.r.johnson@gmail.com>: > When the mono package is installed, the autotools installer installs > the /etc/mono files to the target. A post_install hook then copies > over the mono libraries to the target as well as the host /etc/mono > files which overrides the target files. The target specific mono > configuration file (/etc/mono/config) is overridden with the host > settings. This causes mono on the target to be unable to locate target > specific .so files as it overrides the changes enacted by the patches > for the package. > > Signed-off-by: Dustin Johnson <dustin.r.johnson@gmail.com> Tested-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> Reviewed-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> Acked-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> > --- > package/mono/mono.mk | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/package/mono/mono.mk b/package/mono/mono.mk > index 20b920568..4996b7c60 100644 > --- a/package/mono/mono.mk > +++ b/package/mono/mono.mk > @@ -31,7 +31,6 @@ MONO_CONF_OPTS = --disable-gtk-doc \ > define MONO_INSTALL_LIBS > rsync -av --exclude=*.so --exclude=*.mdb \ > $(HOST_DIR)/usr/lib/mono $(TARGET_DIR)/usr/lib/ > - rsync -av $(HOST_DIR)/etc/mono $(TARGET_DIR)/etc > endef > > MONO_POST_INSTALL_TARGET_HOOKS += MONO_INSTALL_LIBS > -- > 2.12.0.windows.1 > > _______________________________________________ > buildroot mailing list > buildroot at busybox.net > http://lists.busybox.net/mailman/listinfo/buildroot -- Profile: http://it.linkedin.com/in/compagnucciangelo ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] [PATCH 1/1] mono: remove copy of host etc files on install 2017-05-22 14:52 ` Angelo Compagnucci @ 2017-06-01 14:15 ` Peter Korsgaard 0 siblings, 0 replies; 11+ messages in thread From: Peter Korsgaard @ 2017-06-01 14:15 UTC (permalink / raw) To: buildroot >>>>> "Angelo" == Angelo Compagnucci <angelo.compagnucci@gmail.com> writes: > 2017-03-15 3:24 GMT+01:00 Dustin Johnson <dustin.r.johnson@gmail.com>: >> When the mono package is installed, the autotools installer installs >> the /etc/mono files to the target. A post_install hook then copies >> over the mono libraries to the target as well as the host /etc/mono >> files which overrides the target files. The target specific mono >> configuration file (/etc/mono/config) is overridden with the host >> settings. This causes mono on the target to be unable to locate target >> specific .so files as it overrides the changes enacted by the patches >> for the package. >> >> Signed-off-by: Dustin Johnson <dustin.r.johnson@gmail.com> > Tested-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> > Reviewed-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> > Acked-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> Committed to 2017.02.x, thanks. -- Bye, Peter Korsgaard ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] [PATCH 1/1] mono: remove copy of host etc files on install 2017-03-15 2:24 [Buildroot] [PATCH 1/1] mono: remove copy of host etc files on install Dustin Johnson 2017-03-18 14:39 ` Thomas Petazzoni 2017-05-22 14:52 ` Angelo Compagnucci @ 2017-05-23 14:29 ` Thomas Petazzoni 2 siblings, 0 replies; 11+ messages in thread From: Thomas Petazzoni @ 2017-05-23 14:29 UTC (permalink / raw) To: buildroot Hello, On Tue, 14 Mar 2017 22:24:58 -0400, Dustin Johnson wrote: > When the mono package is installed, the autotools installer installs > the /etc/mono files to the target. A post_install hook then copies > over the mono libraries to the target as well as the host /etc/mono > files which overrides the target files. The target specific mono > configuration file (/etc/mono/config) is overridden with the host > settings. This causes mono on the target to be unable to locate target > specific .so files as it overrides the changes enacted by the patches > for the package. > > Signed-off-by: Dustin Johnson <dustin.r.johnson@gmail.com> > --- > package/mono/mono.mk | 1 - > 1 file changed, 1 deletion(-) Applied to master, thanks. Thanks also to Angelo for having tested/reviewed the patch! Best regards, Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2017-06-01 14:15 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-03-15 2:24 [Buildroot] [PATCH 1/1] mono: remove copy of host etc files on install Dustin Johnson 2017-03-18 14:39 ` Thomas Petazzoni 2017-03-19 16:17 ` Dusty 2017-04-06 17:05 ` Angelo Compagnucci 2017-04-06 17:08 ` Angelo Compagnucci 2017-04-08 3:04 ` Dustin Johnson 2017-05-13 13:27 ` Thomas Petazzoni 2017-05-22 14:53 ` Angelo Compagnucci 2017-05-22 14:52 ` Angelo Compagnucci 2017-06-01 14:15 ` Peter Korsgaard 2017-05-23 14:29 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox