mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] rootfs: package
@ 2018-11-29  7:35 Andreas Friesen
  2018-12-03 22:38 ` Andreas Friesen
  2018-12-04  7:49 ` Michael Olbrich
  0 siblings, 2 replies; 14+ messages in thread
From: Andreas Friesen @ 2018-11-29  7:35 UTC (permalink / raw)
  To: ptxdist


[-- Attachment #1.1: Type: text/plain, Size: 1394 bytes --]

...
Hello everyone,

I migrated my project from 2017.05.0 to 2018.11.0 without any troubles, but
"ptxdist images" has a problem with rootfs package. Options
PTXCONF_ROOTFS_RUN=y
PTXCONF_ROOTFS_VAR_RUN=y are active and I don't have any packages, which
install /run or /var/run as a directory.  I checked all packages with
manually extract with :
ar x $package ; tar -xf ./data.tar.gz ;

rootfs_1.0.0_armhf.ipk
...
drwx------   2    40 Nov  1 01:00 root
drwxr-xr-x   2    40 Nov  1 01:00 run
drwxr-xr-x   2    40 Nov  1 01:00 sys
...
drwxr-xr-x  2   40 Nov  1 01:00 var/log
lrwxrwxrwx  1   6 Nov  1 01:00 var/run -> ../run
drwxr-xr-x  2   40 Nov  1 01:00 var/tmp

also, rootfs package looks great for me, but what is wrong  with "ptxdist
images"
...
Installing usr-rootfs (1.0) on root.
InstallinCollected errors:
 * check_data_file_clashes: Package rootfs wants to install file
/home/faix/ptx-multi/platform-soc/build-target/image-nor-mxfs4/var/run
        But that path is currently a directory
 * opkg_solver_install: Cannot install package rootfs.
g luacjson (1.0.0) on root.
....
Installing rootfs (1.0.0) on root.
To remove package debris, try `opkg remove rootfs`.
To re-attempt the install, try `opkg install rootfs`.
...
Configuring libndp.
make: *** [/home/faix/ptx-multi/rules/image-ubifs-mxfs4.make:12:
/home/ffaix/ptx-multi/platform-soc/images/root-mxfs4.ubifs] Error 255

- Andreas

[-- Attachment #1.2: Type: text/html, Size: 2128 bytes --]

[-- Attachment #2: Type: text/plain, Size: 91 bytes --]

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] rootfs: package
  2018-11-29  7:35 [ptxdist] rootfs: package Andreas Friesen
@ 2018-12-03 22:38 ` Andreas Friesen
  2018-12-04  7:50   ` Michael Olbrich
  2018-12-04  7:49 ` Michael Olbrich
  1 sibling, 1 reply; 14+ messages in thread
From: Andreas Friesen @ 2018-12-03 22:38 UTC (permalink / raw)
  To: ptxdist


[-- Attachment #1.1: Type: text/plain, Size: 2119 bytes --]

Hello everyone,

it's work now. Here is a little patch.


--- /usr/local/lib/ptxdist-2018.11.0/rules/host-opkg.make       2018-11-22
20:12:56.000000000 +0100

+++ rules/host-opkg.make        2018-12-03 23:36:48.214811901 +0100
@@ -31,7 +31,6 @@
 #
 HOST_OPKG_CONF_TOOL    := autoconf
 HOST_OPKG_CONF_OPT     := \
-       $(HOST_AUTOCONF) \
        --disable-libopkg-api \
        --disable-static \
        --disable-pathfinder \
@@ -45,4 +44,6 @@
        --without-libsolv \
        --without-static-libopkg

+#      $(HOST_AUTOCONF) \
+
 # vim: syntax=make


Am Do., 29. Nov. 2018 um 08:35 Uhr schrieb Andreas Friesen <
ms.frsn@gmail.com>:

> ...
> Hello everyone,
>
> I migrated my project from 2017.05.0 to 2018.11.0 without any troubles,
> but
> "ptxdist images" has a problem with rootfs package. Options
> PTXCONF_ROOTFS_RUN=y
> PTXCONF_ROOTFS_VAR_RUN=y are active and I don't have any packages, which
> install /run or /var/run as a directory.  I checked all packages with
> manually extract with :
> ar x $package ; tar -xf ./data.tar.gz ;
>
> rootfs_1.0.0_armhf.ipk
> ...
> drwx------   2    40 Nov  1 01:00 root
> drwxr-xr-x   2    40 Nov  1 01:00 run
> drwxr-xr-x   2    40 Nov  1 01:00 sys
> ...
> drwxr-xr-x  2   40 Nov  1 01:00 var/log
> lrwxrwxrwx  1   6 Nov  1 01:00 var/run -> ../run
> drwxr-xr-x  2   40 Nov  1 01:00 var/tmp
>
> also, rootfs package looks great for me, but what is wrong  with "ptxdist
> images"
> ...
> Installing usr-rootfs (1.0) on root.
> InstallinCollected errors:
>  * check_data_file_clashes: Package rootfs wants to install file
> /home/faix/ptx-multi/platform-soc/build-target/image-nor-mxfs4/var/run
>         But that path is currently a directory
>  * opkg_solver_install: Cannot install package rootfs.
> g luacjson (1.0.0) on root.
> ....
> Installing rootfs (1.0.0) on root.
> To remove package debris, try `opkg remove rootfs`.
> To re-attempt the install, try `opkg install rootfs`.
> ...
> Configuring libndp.
> make: *** [/home/faix/ptx-multi/rules/image-ubifs-mxfs4.make:12:
> /home/ffaix/ptx-multi/platform-soc/images/root-mxfs4.ubifs] Error 255
>
> - Andreas
>

[-- Attachment #1.2: Type: text/html, Size: 3466 bytes --]

[-- Attachment #2: Type: text/plain, Size: 91 bytes --]

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] rootfs: package
  2018-11-29  7:35 [ptxdist] rootfs: package Andreas Friesen
  2018-12-03 22:38 ` Andreas Friesen
@ 2018-12-04  7:49 ` Michael Olbrich
  1 sibling, 0 replies; 14+ messages in thread
From: Michael Olbrich @ 2018-12-04  7:49 UTC (permalink / raw)
  To: ptxdist

On Thu, Nov 29, 2018 at 08:35:09AM +0100, Andreas Friesen wrote:
> ...
> Hello everyone,
> 
> I migrated my project from 2017.05.0 to 2018.11.0 without any troubles, but
> "ptxdist images" has a problem with rootfs package. Options
> PTXCONF_ROOTFS_RUN=y
> PTXCONF_ROOTFS_VAR_RUN=y are active and I don't have any packages, which
> install /run or /var/run as a directory.  I checked all packages with
> manually extract with :
> ar x $package ; tar -xf ./data.tar.gz ;
> 
> rootfs_1.0.0_armhf.ipk
> ...
> drwx------   2    40 Nov  1 01:00 root
> drwxr-xr-x   2    40 Nov  1 01:00 run
> drwxr-xr-x   2    40 Nov  1 01:00 sys
> ...
> drwxr-xr-x  2   40 Nov  1 01:00 var/log
> lrwxrwxrwx  1   6 Nov  1 01:00 var/run -> ../run
> drwxr-xr-x  2   40 Nov  1 01:00 var/tmp
> 
> also, rootfs package looks great for me, but what is wrong  with "ptxdist
> images"
> ...
> Installing usr-rootfs (1.0) on root.
> InstallinCollected errors:
>  * check_data_file_clashes: Package rootfs wants to install file
> /home/faix/ptx-multi/platform-soc/build-target/image-nor-mxfs4/var/run
>         But that path is currently a directory
>  * opkg_solver_install: Cannot install package rootfs.
> g luacjson (1.0.0) on root.
> ....
> Installing rootfs (1.0.0) on root.
> To remove package debris, try `opkg remove rootfs`.
> To re-attempt the install, try `opkg install rootfs`.
> ...
> Configuring libndp.
> make: *** [/home/faix/ptx-multi/rules/image-ubifs-mxfs4.make:12:
> /home/ffaix/ptx-multi/platform-soc/images/root-mxfs4.ubifs] Error 255

I think build-target/image-nor-mxfs4/ should still contain the image
content if image creation fails. Is /var/run empty there?

Michael


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

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] rootfs: package
  2018-12-03 22:38 ` Andreas Friesen
@ 2018-12-04  7:50   ` Michael Olbrich
  2018-12-04  9:40     ` Andreas Friesen
  0 siblings, 1 reply; 14+ messages in thread
From: Michael Olbrich @ 2018-12-04  7:50 UTC (permalink / raw)
  To: ptxdist

On Mon, Dec 03, 2018 at 11:38:46PM +0100, Andreas Friesen wrote:
> Hello everyone,
> 
> it's work now. Here is a little patch.
> 
> 
> --- /usr/local/lib/ptxdist-2018.11.0/rules/host-opkg.make       2018-11-22
> 20:12:56.000000000 +0100
> 
> +++ rules/host-opkg.make        2018-12-03 23:36:48.214811901 +0100
> @@ -31,7 +31,6 @@
>  #
>  HOST_OPKG_CONF_TOOL    := autoconf
>  HOST_OPKG_CONF_OPT     := \
> -       $(HOST_AUTOCONF) \
>         --disable-libopkg-api \
>         --disable-static \
>         --disable-pathfinder \
> @@ -45,4 +44,6 @@
>         --without-libsolv \
>         --without-static-libopkg
> 
> +#      $(HOST_AUTOCONF) \
> +
>  # vim: syntax=make

This just removes opkg from your PATH. Did you rebuild the BSP afterwards?
Maybe you have opkg somewhere else in PATH.

Michael

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

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] rootfs: package
  2018-12-04  7:50   ` Michael Olbrich
@ 2018-12-04  9:40     ` Andreas Friesen
  2018-12-04 10:40       ` Michael Olbrich
  0 siblings, 1 reply; 14+ messages in thread
From: Andreas Friesen @ 2018-12-04  9:40 UTC (permalink / raw)
  To: ptxdist


[-- Attachment #1.1: Type: text/plain, Size: 2250 bytes --]

Hi Michael.

I compiled opkg for my host system (archlinux) with : "./configure ; make ;
make install" and installed all packages from ptxdist without any errors:
DESTDIR="/home/friesen/rootfs/rootfs" opkg -f
"/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs/" install
/home/friesen/ptx-multi/platform-soc/packages/*.ipk

but

DESTDIR="/home/friesen/rootfs/rootfs"
/home/friesen/gitlab/ptx-multi/platform-soc/sysroot-host/bin/opkg
-f "/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs/"
install
/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/packages/*,pkg

produced this error:

* check_data_file_clashes: Package rootfs wants to install file
/home/faix/ptx-multi/platform-soc/build-target/image-nor-mxfs4/var/run
        But that path is currently a directory

I finded out with try-and-error method, that opkg do not like "prefix= " !



Am Di., 4. Dez. 2018 um 08:50 Uhr schrieb Michael Olbrich <
m.olbrich@pengutronix.de>:

> On Mon, Dec 03, 2018 at 11:38:46PM +0100, Andreas Friesen wrote:
> > Hello everyone,
> >
> > it's work now. Here is a little patch.
> >
> >
> > --- /usr/local/lib/ptxdist-2018.11.0/rules/host-opkg.make
>  2018-11-22
> > 20:12:56.000000000 +0100
> >
> > +++ rules/host-opkg.make        2018-12-03 23:36:48.214811901 +0100
> > @@ -31,7 +31,6 @@
> >  #
> >  HOST_OPKG_CONF_TOOL    := autoconf
> >  HOST_OPKG_CONF_OPT     := \
> > -       $(HOST_AUTOCONF) \
> >         --disable-libopkg-api \
> >         --disable-static \
> >         --disable-pathfinder \
> > @@ -45,4 +44,6 @@
> >         --without-libsolv \
> >         --without-static-libopkg
> >
> > +#      $(HOST_AUTOCONF) \
> > +
> >  # vim: syntax=make
>
> This just removes opkg from your PATH. Did you rebuild the BSP afterwards?
> Maybe you have opkg somewhere else in PATH.
>
> Michael
>
> --
> Pengutronix e.K.                           |                             |
> Industrial Linux Solutions                 | http://www.pengutronix.de/  |
> Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
> Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de

[-- Attachment #1.2: Type: text/html, Size: 3390 bytes --]

[-- Attachment #2: Type: text/plain, Size: 91 bytes --]

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] rootfs: package
  2018-12-04  9:40     ` Andreas Friesen
@ 2018-12-04 10:40       ` Michael Olbrich
  2018-12-04 11:47         ` Andreas Friesen
  0 siblings, 1 reply; 14+ messages in thread
From: Michael Olbrich @ 2018-12-04 10:40 UTC (permalink / raw)
  To: ptxdist

On Tue, Dec 04, 2018 at 10:40:11AM +0100, Andreas Friesen wrote:
> Hi Michael.
> 
> I compiled opkg for my host system (archlinux) with : "./configure ; make ;
> make install" and installed all packages from ptxdist without any errors:
> DESTDIR="/home/friesen/rootfs/rootfs" opkg -f
> "/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs/" install
> /home/friesen/ptx-multi/platform-soc/packages/*.ipk
> 
> but
> 
> DESTDIR="/home/friesen/rootfs/rootfs"
> /home/friesen/gitlab/ptx-multi/platform-soc/sysroot-host/bin/opkg
> -f "/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs/"
> install
> /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/packages/*,pkg
> 
> produced this error:
> 
> * check_data_file_clashes: Package rootfs wants to install file
> /home/faix/ptx-multi/platform-soc/build-target/image-nor-mxfs4/var/run
>         But that path is currently a directory
> 
> I finded out with try-and-error method, that opkg do not like "prefix= " !

Very strange. I don't see this issue here. Also, did you copy the correct
error message? The path there is not inside the specified DESTDIR. And is
var/run inside the generated rootfs an empty directory?

Also, calling opkg manually may work for other reasons: If rootfs is
installed before another package created the directory, then I think it
will just work.

Michael

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

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] rootfs: package
  2018-12-04 10:40       ` Michael Olbrich
@ 2018-12-04 11:47         ` Andreas Friesen
  2018-12-04 11:53           ` Andreas Friesen
  0 siblings, 1 reply; 14+ messages in thread
From: Andreas Friesen @ 2018-12-04 11:47 UTC (permalink / raw)
  To: ptxdist


[-- Attachment #1.1: Type: text/plain, Size: 6835 bytes --]

Also rootfs and rootfs0 exists not!

$ DESTDIR="/home/friesen/rootfs/rootfs"
/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/opkg
-f "/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs/"
install  rootfs_1.0.0_armhf.ipk
Installing rootfs (1.0.0) on root.
To remove package debris, try `opkg remove rootfs`.
To re-attempt the install, try `opkg install rootfs`.
Collected errors:
 * check_data_file_clashes: Package rootfs wants to install file
/home/friesen/rootfs/rootfs//var/run
But that path is currently a directory
 * opkg_solver_install: Cannot install package rootfs.

[$] <> ls -all rootfs/var
total 20
drwxr-xr-x 5 friesen friesen 4096 Dec  4 12:42 .
drwxr-xr-x 3 friesen friesen 4096 Dec  4 12:42 ..
drwxr-xr-x 3 friesen friesen 4096 Dec  4 12:42 cache
drwxr-xr-x 3 friesen friesen 4096 Dec  4 12:42 lib
drwxr-xr-x 2 friesen friesen 4096 Dec  4 12:42 run  <------ !!!!! is a
directory


DESTDIR="/home/friesen/rootfs/rootfs0"  opkg -f
"/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs0/" install
rootfs_1.0.0_armhf.ipk
Installing rootfs (1.0.0) on root.


Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//proc/': Can't set UID=0
Warning when extracting archive entry '/home/friesen/rootfs/rootfs0//mnt/':
Can't set UID=0
Warning when extracting archive entry '/home/friesen/rootfs/rootfs0//sys/':
Can't set UID=0
Warning when extracting archive entry '/home/friesen/rootfs/rootfs0//etc/':
Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//etc/profile': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//etc/resolv.conf': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//etc/hostname': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//etc/group': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//etc/issue': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//etc/passwd': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//etc/shadow': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//etc/nsswitch.conf': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//etc/mtab': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//etc/services': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//etc/hosts': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//etc/profile.environment': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//etc/fstab': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//etc/protocols': Can't set UID=0
Warning when extracting archive entry '/home/friesen/rootfs/rootfs0//run/':
Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//root/': Can't set UID=0
Warning when extracting archive entry '/home/friesen/rootfs/rootfs0//dev/':
Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//dev/zero': Can't create
'/home/friesen/rootfs/rootfs0/dev/zero'
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//dev/console': Can't create
'/home/friesen/rootfs/rootfs0/dev/console'
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//dev/null': Can't create
'/home/friesen/rootfs/rootfs0/dev/null'
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//home/': Can't set UID=0
Warning when extracting archive entry '/home/friesen/rootfs/rootfs0//tmp/':
Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//media/': Can't set UID=0
Warning when extracting archive entry '/home/friesen/rootfs/rootfs0//var/':
Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//var/lock/': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//var/run': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//var/log/': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//var/tmp/': Can't set UID=0
Warning when extracting archive entry
'/home/friesen/rootfs/rootfs0//var/cache/': Can't set UID=0
Configuring rootfs.

ls -all rootfs0/var
total 24
drwxr-xr-x  6 friesen friesen 4096 Nov  1 01:00 .
drwxr-xr-x 14 friesen friesen 4096 Dec  4 12:44 ..
drwxr-xr-x  2 friesen friesen 4096 Nov  1 01:00 cache
drwxr-xr-x  2 friesen friesen 4096 Nov  1 01:00 lock
drwxr-xr-x  2 friesen friesen 4096 Nov  1 01:00 log
lrwxrwxrwx  1 friesen friesen    6 Nov  1 01:00 run -> ../run      <--- is
a link !
drwxr-xr-x  2 friesen friesen 4096 Nov  1 01:00 tmp





Am Di., 4. Dez. 2018 um 11:40 Uhr schrieb Michael Olbrich <
m.olbrich@pengutronix.de>:

> On Tue, Dec 04, 2018 at 10:40:11AM +0100, Andreas Friesen wrote:
> > Hi Michael.
> >
> > I compiled opkg for my host system (archlinux) with : "./configure ;
> make ;
> > make install" and installed all packages from ptxdist without any errors:
> > DESTDIR="/home/friesen/rootfs/rootfs" opkg -f
> > "/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs/"
> install
> > /home/friesen/ptx-multi/platform-soc/packages/*.ipk
> >
> > but
> >
> > DESTDIR="/home/friesen/rootfs/rootfs"
> > /home/friesen/gitlab/ptx-multi/platform-soc/sysroot-host/bin/opkg
> > -f "/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs/"
> > install
> >
> /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/packages/*,pkg
> >
> > produced this error:
> >
> > * check_data_file_clashes: Package rootfs wants to install file
> > /home/faix/ptx-multi/platform-soc/build-target/image-nor-mxfs4/var/run
> >         But that path is currently a directory
> >
> > I finded out with try-and-error method, that opkg do not like "prefix= "
> !
>
> Very strange. I don't see this issue here. Also, did you copy the correct
> error message? The path there is not inside the specified DESTDIR. And is
> var/run inside the generated rootfs an empty directory?
>
> Also, calling opkg manually may work for other reasons: If rootfs is
> installed before another package created the directory, then I think it
> will just work.
>
> Michael
>
> --
> Pengutronix e.K.                           |                             |
> Industrial Linux Solutions                 | http://www.pengutronix.de/  |
> Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
> Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de

[-- Attachment #1.2: Type: text/html, Size: 9258 bytes --]

[-- Attachment #2: Type: text/plain, Size: 91 bytes --]

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] rootfs: package
  2018-12-04 11:47         ` Andreas Friesen
@ 2018-12-04 11:53           ` Andreas Friesen
  2018-12-04 11:58             ` Michael Olbrich
  0 siblings, 1 reply; 14+ messages in thread
From: Andreas Friesen @ 2018-12-04 11:53 UTC (permalink / raw)
  To: ptxdist


[-- Attachment #1.1: Type: text/plain, Size: 7969 bytes --]

Here as attachment config.log files

----------------------- ptxdist opkg config.log
  $ ./configure --prefix= --disable-libopkg-api --disable-static
--disable-pathfinder --disable-xz --disable-bzip2 --disable-curl
--disable-sha256 --disable-openssl --disable-ssl-curl --disable-gpg
--without-l
ibsolv --without-static-libopkg

## --------- ##
## Platform. ##
## --------- ##

hostname = sumo
uname -m = x86_64
uname -r = 4.19.4-arch1-1-ARCH
uname -s = Linux
uname -v = #1 SMP PREEMPT Fri Nov 23 09:06:58 UTC 2018

-------------------------- my opkg config.log


  $ ./configure

## --------- ##
## Platform. ##
## --------- ##

hostname = sumo
uname -m = x86_64
uname -r = 4.19.4-arch1-1-ARCH
uname -s = Linux
uname -v = #1 SMP PREEMPT Fri Nov 23 09:06:58 UTC 2018



Am Di., 4. Dez. 2018 um 12:47 Uhr schrieb Andreas Friesen <ms.frsn@gmail.com
>:

> Also rootfs and rootfs0 exists not!
>
> $ DESTDIR="/home/friesen/rootfs/rootfs"
> /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/opkg
> -f "/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs/"
> install  rootfs_1.0.0_armhf.ipk
> Installing rootfs (1.0.0) on root.
> To remove package debris, try `opkg remove rootfs`.
> To re-attempt the install, try `opkg install rootfs`.
> Collected errors:
>  * check_data_file_clashes: Package rootfs wants to install file
> /home/friesen/rootfs/rootfs//var/run
> But that path is currently a directory
>  * opkg_solver_install: Cannot install package rootfs.
>
> [$] <> ls -all rootfs/var
> total 20
> drwxr-xr-x 5 friesen friesen 4096 Dec  4 12:42 .
> drwxr-xr-x 3 friesen friesen 4096 Dec  4 12:42 ..
> drwxr-xr-x 3 friesen friesen 4096 Dec  4 12:42 cache
> drwxr-xr-x 3 friesen friesen 4096 Dec  4 12:42 lib
> drwxr-xr-x 2 friesen friesen 4096 Dec  4 12:42 run  <------ !!!!! is a
> directory
>
>
> DESTDIR="/home/friesen/rootfs/rootfs0"  opkg -f
> "/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs0/" install
> rootfs_1.0.0_armhf.ipk
> Installing rootfs (1.0.0) on root.
>
>
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//proc/': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//mnt/': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//sys/': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//etc/': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//etc/profile': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//etc/resolv.conf': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//etc/hostname': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//etc/group': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//etc/issue': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//etc/passwd': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//etc/shadow': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//etc/nsswitch.conf': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//etc/mtab': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//etc/services': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//etc/hosts': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//etc/profile.environment': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//etc/fstab': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//etc/protocols': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//run/': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//root/': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//dev/': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//dev/zero': Can't create
> '/home/friesen/rootfs/rootfs0/dev/zero'
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//dev/console': Can't create
> '/home/friesen/rootfs/rootfs0/dev/console'
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//dev/null': Can't create
> '/home/friesen/rootfs/rootfs0/dev/null'
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//home/': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//tmp/': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//media/': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//var/': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//var/lock/': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//var/run': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//var/log/': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//var/tmp/': Can't set UID=0
> Warning when extracting archive entry
> '/home/friesen/rootfs/rootfs0//var/cache/': Can't set UID=0
> Configuring rootfs.
>
> ls -all rootfs0/var
> total 24
> drwxr-xr-x  6 friesen friesen 4096 Nov  1 01:00 .
> drwxr-xr-x 14 friesen friesen 4096 Dec  4 12:44 ..
> drwxr-xr-x  2 friesen friesen 4096 Nov  1 01:00 cache
> drwxr-xr-x  2 friesen friesen 4096 Nov  1 01:00 lock
> drwxr-xr-x  2 friesen friesen 4096 Nov  1 01:00 log
> lrwxrwxrwx  1 friesen friesen    6 Nov  1 01:00 run -> ../run      <--- is
> a link !
> drwxr-xr-x  2 friesen friesen 4096 Nov  1 01:00 tmp
>
>
>
>
>
> Am Di., 4. Dez. 2018 um 11:40 Uhr schrieb Michael Olbrich <
> m.olbrich@pengutronix.de>:
>
>> On Tue, Dec 04, 2018 at 10:40:11AM +0100, Andreas Friesen wrote:
>> > Hi Michael.
>> >
>> > I compiled opkg for my host system (archlinux) with : "./configure ;
>> make ;
>> > make install" and installed all packages from ptxdist without any
>> errors:
>> > DESTDIR="/home/friesen/rootfs/rootfs" opkg -f
>> > "/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs/"
>> install
>> > /home/friesen/ptx-multi/platform-soc/packages/*.ipk
>> >
>> > but
>> >
>> > DESTDIR="/home/friesen/rootfs/rootfs"
>> > /home/friesen/gitlab/ptx-multi/platform-soc/sysroot-host/bin/opkg
>> > -f "/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs/"
>> > install
>> >
>> /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/packages/*,pkg
>> >
>> > produced this error:
>> >
>> > * check_data_file_clashes: Package rootfs wants to install file
>> > /home/faix/ptx-multi/platform-soc/build-target/image-nor-mxfs4/var/run
>> >         But that path is currently a directory
>> >
>> > I finded out with try-and-error method, that opkg do not like "prefix=
>> " !
>>
>> Very strange. I don't see this issue here. Also, did you copy the correct
>> error message? The path there is not inside the specified DESTDIR. And is
>> var/run inside the generated rootfs an empty directory?
>>
>> Also, calling opkg manually may work for other reasons: If rootfs is
>> installed before another package created the directory, then I think it
>> will just work.
>>
>> Michael
>>
>> --
>> Pengutronix e.K.                           |                             |
>> Industrial Linux Solutions                 | http://www.pengutronix.de/
>> |
>> Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
>> Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |
>>
>> _______________________________________________
>> ptxdist mailing list
>> ptxdist@pengutronix.de
>
>

[-- Attachment #1.2: Type: text/html, Size: 10782 bytes --]

[-- Attachment #2: Type: text/plain, Size: 91 bytes --]

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] rootfs: package
  2018-12-04 11:53           ` Andreas Friesen
@ 2018-12-04 11:58             ` Michael Olbrich
  2018-12-04 12:47               ` Andreas Friesen
  0 siblings, 1 reply; 14+ messages in thread
From: Michael Olbrich @ 2018-12-04 11:58 UTC (permalink / raw)
  To: ptxdist

On Tue, Dec 04, 2018 at 12:53:14PM +0100, Andreas Friesen wrote:
> Here as attachment config.log files

No attachment?

Anyways, can you run the failing version with 'strace -osomelogfile ...'
und grep for /var/run in the resulting logfile? Anything suspicious there?

Michael

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

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] rootfs: package
  2018-12-04 11:58             ` Michael Olbrich
@ 2018-12-04 12:47               ` Andreas Friesen
  2018-12-04 12:58                 ` Michael Olbrich
  0 siblings, 1 reply; 14+ messages in thread
From: Andreas Friesen @ 2018-12-04 12:47 UTC (permalink / raw)
  To: ptxdist


[-- Attachment #1.1: Type: text/plain, Size: 4646 bytes --]

DESTDIR="/home/friesen/rootfs/rootfs0"  strace -orootfs.log  opkg -f
"/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs0/" install
rootfs_1.0.0_armhf.ipk
ââ[$] <> cat rootfs.log| grep run
lstat("/home/friesen/rootfs/rootfs0///usr/local/var/run", 0x7ffdc16d6f60) =
-1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs0///usr/local/var/run", 0x7ffdc16d6f40) =
-1 ENOENT (No such file or directory)
mkdir("/home/friesen/rootfs/rootfs0///usr/local/var/run", 0777) = 0
chmod("/home/friesen/rootfs/rootfs0///usr/local/var/run", 0755) = 0
creat("/home/friesen/rootfs/rootfs0///usr/local/var/run/opkg.lock", 0640) =
4
lstat("/home/friesen/rootfs/rootfs0//run", 0x7ffdc16d6d40) = -1 ENOENT (No
such file or directory)
lstat("/home/friesen/rootfs/rootfs0//var/run", 0x7ffdc16d6d40) = -1 ENOENT
(No such file or directory)
connect(6, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1
ENOENT (No such file or directory)
connect(6, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1
ENOENT (No such file or directory)
connect(6, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1
ENOENT (No such file or directory)
connect(6, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1
ENOENT (No such file or directory)
mkdir("/home/friesen/rootfs/rootfs0/run", 0755) = 0
unlink("/home/friesen/rootfs/rootfs0/var/run") = -1 ENOENT (No such file or
directory)
symlink("../run", "/home/friesen/rootfs/rootfs0/var/run") = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/var/run",
[{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */,
{tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */],
AT_SYMLINK_NOFOLLOW) = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0//run/",
[{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */,
{tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */],
AT_SYMLINK_NOFOLLOW) = 0
chmod("/home/friesen/rootfs/rootfs0//run/", 040755) = 0
lstat("/home/friesen/rootfs/rootfs0//run", {st_mode=S_IFDIR|0755,
st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//run", {st_mode=S_IFDIR|0755,
st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//var/run", {st_mode=S_IFLNK|0777,
st_size=6, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//var/run", {st_mode=S_IFLNK|0777,
st_size=6, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0///usr/local/var/run/opkg.lock",
{st_mode=S_IFREG|0640, st_size=0, ...}) = 0
unlink("/home/friesen/rootfs/rootfs0///usr/local/var/run/opkg.lock") = 0
ââ[friesen@sumo] - [~/rootfs] - [Tue Dec 04, 13:43]


DESTDIR="/home/friesen/rootfs/rootfs" strace -orootfs0.log
 /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/opkg
-f "/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs/"
install  rootfs_1.0.0_armhf.ipk
ââ[$] <> cat rootfs0.log| grep run
lstat("/home/friesen/rootfs/rootfs///var/run", 0x7ffd2707e040) = -1 ENOENT
(No such file or directory)
stat("/home/friesen/rootfs/rootfs///var/run", 0x7ffd2707e020) = -1 ENOENT
(No such file or directory)
mkdir("/home/friesen/rootfs/rootfs///var/run", 0777) = 0
chmod("/home/friesen/rootfs/rootfs///var/run", 0755) = 0
creat("/home/friesen/rootfs/rootfs///var/run/opkg.lock", 0640) = 4
lstat("/home/friesen/rootfs/rootfs//run", 0x7ffd2707de20) = -1 ENOENT (No
such file or directory)
lstat("/home/friesen/rootfs/rootfs//var/run", {st_mode=S_IFDIR|0755,
st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs//var/run", {st_mode=S_IFDIR|0755,
st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs///var/run/opkg.lock",
{st_mode=S_IFREG|0640, st_size=0, ...}) = 0
unlink("/home/friesen/rootfs/rootfs///var/run/opkg.lock") = 0
ââ[friesen@sumo] - [~/rootfs] - [Tue Dec 04, 13:43]


Am Di., 4. Dez. 2018 um 12:58 Uhr schrieb Michael Olbrich <
m.olbrich@pengutronix.de>:

> On Tue, Dec 04, 2018 at 12:53:14PM +0100, Andreas Friesen wrote:
> > Here as attachment config.log files
>
> No attachment?
>
> Anyways, can you run the failing version with 'strace -osomelogfile ...'
> und grep for /var/run in the resulting logfile? Anything suspicious there?
>
> Michael
>
> --
> Pengutronix e.K.                           |                             |
> Industrial Linux Solutions                 | http://www.pengutronix.de/  |
> Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
> Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de

[-- Attachment #1.2: Type: text/html, Size: 5983 bytes --]

[-- Attachment #2: config.log --]
[-- Type: text/x-log, Size: 64504 bytes --]

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by opkg configure 0.3.6, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  $ ./configure --prefix= --disable-libopkg-api --disable-static --disable-pathfinder --disable-xz --disable-bzip2 --disable-curl --disable-sha256 --disable-openssl --disable-ssl-curl --disable-gpg --without-libsolv --without-static-libopkg

## --------- ##
## Platform. ##
## --------- ##

hostname = sumo
uname -m = x86_64
uname -r = 4.19.4-arch1-1-ARCH
uname -s = Linux
uname -v = #1 SMP PREEMPT Fri Nov 23 09:06:58 UTC 2018

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/lib/wrapper
PATH: /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin
PATH: /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/sbin
PATH: /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/selected_toolchain
PATH: /usr/local/lib/ptxdist-2018.11.0/bin
PATH: /usr/local/lib/ptxdist-2018.06.0/bin
PATH: /home/friesen/bin
PATH: /home/friesen/bin
PATH: /home/friesen/go/bin
PATH: /home/friesen/.cargo/bin
PATH: /home/friesen/.cargo/bin
PATH: /home/friesen/.cargo/bin
PATH: /opt/VSCode-linux-x64
PATH: /home/friesen/.nimble/bin
PATH: /home/friesen/.cargo/bin
PATH: /home/friesen/.local/bin
PATH: /home/friesen/go/bin
PATH: /home/friesen/.gem/ruby/2.4.0/bin
PATH: /home/friesen/bin
PATH: /bin
PATH: /usr/bin
PATH: /usr/local/bin
PATH: /usr/local/sbin
PATH: /usr/lib/jvm/default/bin
PATH: /usr/bin/site_perl
PATH: /usr/bin/vendor_perl
PATH: /usr/bin/core_perl
PATH: /usr/share/crossworks_for_arm_3.7/bin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:2484: checking for a BSD-compatible install
configure:2552: result: /usr/local/lib/ptxdist-2018.11.0/bin/install -c
configure:2563: checking whether build environment is sane
configure:2618: result: yes
configure:2769: checking for a thread-safe mkdir -p
configure:2808: result: /usr/local/lib/ptxdist-2018.11.0/bin/mkdir -p
configure:2815: checking for gawk
configure:2831: found /bin/gawk
configure:2842: result: gawk
configure:2853: checking whether make sets $(MAKE)
configure:2875: result: yes
configure:2904: checking whether make supports nested variables
configure:2921: result: yes
configure:3054: checking build system type
configure:3068: result: x86_64-pc-linux-gnu
configure:3088: checking host system type
configure:3101: result: x86_64-pc-linux-gnu
configure:3125: checking whether make supports the include directive
configure:3140: make -f confmf.GNU && cat confinc.out
make[1]: Entering directory '/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/build-host/opkg-0.3.6'
make[1]: Leaving directory '/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/build-host/opkg-0.3.6'
this is the am__doit target
configure:3143: $? = 0
configure:3162: result: yes (GNU style)
configure:3232: checking for gcc
configure:3259: result: gcc
configure:3488: checking for C compiler version
configure:3497: gcc --version >&5
gcc (GCC) 8.2.1 20180831
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:3508: $? = 0
configure:3497: gcc -v >&5
Using built-in specs.
COLLECT_GCC=/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/lib/wrapper/real/gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --enable-libmpx --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp --enable-cet=auto
Thread model: posix
gcc version 8.2.1 20180831 (GCC) 
configure:3508: $? = 0
configure:3497: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:3508: $? = 1
configure:3497: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
gcc: fatal error: no input files
compilation terminated.
configure:3508: $? = 1
configure:3528: checking whether the C compiler works
configure:3550: gcc    conftest.c  >&5
configure:3554: $? = 0
configure:3602: result: yes
configure:3605: checking for C compiler default output file name
configure:3607: result: a.out
configure:3613: checking for suffix of executables
configure:3620: gcc -o conftest    conftest.c  >&5
configure:3624: $? = 0
configure:3646: result: 
configure:3668: checking whether we are cross compiling
configure:3676: gcc -o conftest    conftest.c  >&5
configure:3680: $? = 0
configure:3687: ./conftest
configure:3691: $? = 0
configure:3706: result: no
configure:3711: checking for suffix of object files
configure:3733: gcc -c   conftest.c >&5
configure:3737: $? = 0
configure:3758: result: o
configure:3762: checking whether we are using the GNU C compiler
configure:3781: gcc -c   conftest.c >&5
configure:3781: $? = 0
configure:3790: result: yes
configure:3799: checking whether gcc accepts -g
configure:3819: gcc -c -g  conftest.c >&5
configure:3819: $? = 0
configure:3860: result: yes
configure:3877: checking for gcc option to accept ISO C89
configure:3940: gcc  -c -g -O2  conftest.c >&5
configure:3940: $? = 0
configure:3953: result: none needed
configure:3978: checking whether gcc understands -c and -o together
configure:4000: gcc -c conftest.c -o conftest2.o
configure:4003: $? = 0
configure:4000: gcc -c conftest.c -o conftest2.o
configure:4003: $? = 0
configure:4015: result: yes
configure:4034: checking dependency style of gcc
configure:4145: result: gcc3
configure:4166: checking how to run the C preprocessor
configure:4197: gcc -E  conftest.c
configure:4197: $? = 0
configure:4211: gcc -E  conftest.c
conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
          ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:4211: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4236: result: gcc -E
configure:4256: gcc -E  conftest.c
configure:4256: $? = 0
configure:4270: gcc -E  conftest.c
conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
          ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:4270: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4299: checking for grep that handles long lines and -e
configure:4357: result: /bin/grep
configure:4362: checking for egrep
configure:4424: result: /bin/grep -E
configure:4429: checking for ANSI C header files
configure:4449: gcc -c -g -O2  conftest.c >&5
configure:4449: $? = 0
configure:4522: gcc -o conftest -g -O2   conftest.c  >&5
configure:4522: $? = 0
configure:4522: ./conftest
configure:4522: $? = 0
configure:4533: result: yes
configure:4546: checking for sys/types.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4546: checking for sys/stat.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4546: checking for stdlib.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4546: checking for string.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4546: checking for memory.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4546: checking for strings.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4546: checking for inttypes.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4546: checking for stdint.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4546: checking for unistd.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4559: checking minix/config.h usability
configure:4559: gcc -c -g -O2  conftest.c >&5
conftest.c:54:10: fatal error: minix/config.h: No such file or directory
 #include <minix/config.h>
          ^~~~~~~~~~~~~~~~
compilation terminated.
configure:4559: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <minix/config.h>
configure:4559: result: no
configure:4559: checking minix/config.h presence
configure:4559: gcc -E  conftest.c
conftest.c:21:10: fatal error: minix/config.h: No such file or directory
 #include <minix/config.h>
          ^~~~~~~~~~~~~~~~
compilation terminated.
configure:4559: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <minix/config.h>
configure:4559: result: no
configure:4559: checking for minix/config.h
configure:4559: result: no
configure:4580: checking whether it is safe to define __EXTENSIONS__
configure:4598: gcc -c -g -O2  conftest.c >&5
configure:4598: $? = 0
configure:4605: result: yes
configure:4638: checking for special C compiler options needed for large files
configure:4683: result: no
configure:4689: checking for _FILE_OFFSET_BITS value needed for large files
configure:4714: gcc -c -g -O2  conftest.c >&5
configure:4714: $? = 0
configure:4746: result: no
configure:4843: checking whether make supports nested variables
configure:4860: result: yes
configure:4894: checking for gawk
configure:4921: result: gawk
configure:4980: checking for gcc
configure:5007: result: gcc
configure:5236: checking for C compiler version
configure:5245: gcc --version >&5
gcc (GCC) 8.2.1 20180831
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:5256: $? = 0
configure:5245: gcc -v >&5
Using built-in specs.
COLLECT_GCC=/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/lib/wrapper/real/gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --enable-libmpx --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp --enable-cet=auto
Thread model: posix
gcc version 8.2.1 20180831 (GCC) 
configure:5256: $? = 0
configure:5245: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:5256: $? = 1
configure:5245: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
gcc: fatal error: no input files
compilation terminated.
configure:5256: $? = 1
configure:5260: checking whether we are using the GNU C compiler
configure:5288: result: yes
configure:5297: checking whether gcc accepts -g
configure:5358: result: yes
configure:5375: checking for gcc option to accept ISO C89
configure:5451: result: none needed
configure:5476: checking whether gcc understands -c and -o together
configure:5513: result: yes
configure:5532: checking dependency style of gcc
configure:5643: result: gcc3
configure:5659: checking whether ln -s works
configure:5663: result: yes
configure:5816: checking how to print strings
configure:5843: result: printf
configure:5864: checking for a sed that does not truncate output
configure:5928: result: /usr/local/lib/ptxdist-2018.11.0/bin/sed
configure:5946: checking for fgrep
configure:6008: result: /bin/grep -F
configure:6043: checking for ld used by gcc
configure:6110: result: /bin/ld
configure:6117: checking if the linker (/bin/ld) is GNU ld
configure:6132: result: yes
configure:6144: checking for BSD- or MS-compatible name lister (nm)
configure:6198: result: /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/lib/wrapper/nm -B
configure:6328: checking the name lister (/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/lib/wrapper/nm -B) interface
configure:6335: gcc -c -g -O2  conftest.c >&5
configure:6338: /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/lib/wrapper/nm -B "conftest.o"
configure:6341: output
0000000000000000 B some_variable
configure:6348: result: BSD nm
configure:6352: checking the maximum length of command line arguments
configure:6483: result: 1572864
configure:6531: checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format
configure:6571: result: func_convert_file_noop
configure:6578: checking how to convert x86_64-pc-linux-gnu file names to toolchain format
configure:6598: result: func_convert_file_noop
configure:6605: checking for /bin/ld option to reload object files
configure:6612: result: -r
configure:6686: checking for objdump
configure:6702: found /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/lib/wrapper/objdump
configure:6713: result: objdump
configure:6745: checking how to recognize dependent libraries
configure:6945: result: pass_all
configure:7030: checking for dlltool
configure:7060: result: no
configure:7090: checking how to associate runtime and link libraries
configure:7117: result: printf %s\n
configure:7177: checking for ar
configure:7193: found /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/lib/wrapper/ar
configure:7204: result: ar
configure:7257: checking for archiver @FILE support
configure:7274: gcc -c -g -O2  conftest.c >&5
configure:7274: $? = 0
configure:7277: ar cr libconftest.a @conftest.lst >&5
configure:7280: $? = 0
configure:7285: ar cr libconftest.a @conftest.lst >&5
ar: conftest.o: No such file or directory
configure:7288: $? = 1
configure:7300: result: @
configure:7358: checking for strip
configure:7374: found /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/lib/wrapper/strip
configure:7385: result: strip
configure:7457: checking for ranlib
configure:7473: found /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/lib/wrapper/ranlib
configure:7484: result: ranlib
configure:7586: checking command to parse /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/lib/wrapper/nm -B output from gcc object
configure:7739: gcc -c -g -O2  conftest.c >&5
configure:7742: $? = 0
configure:7746: /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/lib/wrapper/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
configure:7749: $? = 0
configure:7815: gcc -o conftest -g -O2   conftest.c conftstm.o >&5
configure:7818: $? = 0
configure:7856: result: ok
configure:7903: checking for sysroot
configure:7933: result: no
configure:7940: checking for a working dd
configure:7978: result: /bin/dd
configure:7982: checking how to truncate binary pipes
configure:7997: result: /bin/dd bs=4096 count=1
configure:8133: gcc -c -g -O2  conftest.c >&5
configure:8136: $? = 0
configure:8326: checking for mt
configure:8356: result: no
configure:8376: checking if : is a manifest tool
configure:8382: : '-?'
configure:8390: result: no
configure:9064: checking for dlfcn.h
configure:9064: gcc -c -g -O2  conftest.c >&5
configure:9064: $? = 0
configure:9064: result: yes
configure:9320: checking for objdir
configure:9335: result: .libs
configure:9599: checking if gcc supports -fno-rtti -fno-exceptions
configure:9617: gcc -c -g -O2  -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C
configure:9621: $? = 0
configure:9634: result: no
configure:9992: checking for gcc option to produce PIC
configure:9999: result: -fPIC -DPIC
configure:10007: checking if gcc PIC flag -fPIC -DPIC works
configure:10025: gcc -c -g -O2  -fPIC -DPIC -DPIC conftest.c >&5
configure:10029: $? = 0
configure:10042: result: yes
configure:10071: checking if gcc static flag -static works
configure:10099: result: yes
configure:10114: checking if gcc supports -c -o file.o
configure:10135: gcc -c -g -O2  -o out/conftest2.o conftest.c >&5
configure:10139: $? = 0
configure:10161: result: yes
configure:10169: checking if gcc supports -c -o file.o
configure:10216: result: yes
configure:10249: checking whether the gcc linker (/bin/ld -m elf_x86_64) supports shared libraries
configure:11508: result: yes
configure:11545: checking whether -lc should be explicitly linked in
configure:11553: gcc -c -g -O2  conftest.c >&5
configure:11556: $? = 0
configure:11571: gcc -shared  -fPIC -DPIC conftest.o  -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep  -lc  \>/dev/null 2\>\&1
configure:11574: $? = 0
configure:11588: result: no
configure:11748: checking dynamic linker characteristics
configure:12329: gcc -o conftest -g -O2   -Wl,-rpath -Wl,/foo conftest.c  >&5
configure:12329: $? = 0
configure:12566: result: GNU/Linux ld.so
configure:12688: checking how to hardcode library paths into programs
configure:12713: result: immediate
configure:13261: checking whether stripping libraries is possible
configure:13266: result: yes
configure:13301: checking if libtool supports shared libraries
configure:13303: result: yes
configure:13306: checking whether to build shared libraries
configure:13331: result: yes
configure:13334: checking whether to build static libraries
configure:13338: result: no
configure:13429: checking for pkg-config
configure:13447: found /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/pkg-config
configure:13459: result: /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/pkg-config
configure:13484: checking pkg-config is at least version 0.20
configure:13487: result: yes
configure:13501: checking for libarchive
configure:13508: $PKG_CONFIG --exists --print-errors "libarchive"
configure:13511: $? = 0
configure:13525: $PKG_CONFIG --exists --print-errors "libarchive"
configure:13528: $? = 0
configure:13586: result: yes
configure:14553: checking for dirent.h that defines DIR
configure:14572: gcc -c -g -O2  conftest.c >&5
configure:14572: $? = 0
configure:14580: result: yes
configure:14593: checking for library containing opendir
configure:14624: gcc -o conftest -g -O2   conftest.c  >&5
configure:14624: $? = 0
configure:14641: result: none required
configure:14708: checking for ANSI C header files
configure:14812: result: yes
configure:14820: checking for sys/wait.h that is POSIX.1 compatible
configure:14846: gcc -c -g -O2  conftest.c >&5
configure:14846: $? = 0
configure:14853: result: yes
configure:14864: checking errno.h usability
configure:14864: gcc -c -g -O2  conftest.c >&5
configure:14864: $? = 0
configure:14864: result: yes
configure:14864: checking errno.h presence
configure:14864: gcc -E  conftest.c
configure:14864: $? = 0
configure:14864: result: yes
configure:14864: checking for errno.h
configure:14864: result: yes
configure:14864: checking fcntl.h usability
configure:14864: gcc -c -g -O2  conftest.c >&5
configure:14864: $? = 0
configure:14864: result: yes
configure:14864: checking fcntl.h presence
configure:14864: gcc -E  conftest.c
configure:14864: $? = 0
configure:14864: result: yes
configure:14864: checking for fcntl.h
configure:14864: result: yes
configure:14864: checking for memory.h
configure:14864: result: yes
configure:14864: checking regex.h usability
configure:14864: gcc -c -g -O2  conftest.c >&5
configure:14864: $? = 0
configure:14864: result: yes
configure:14864: checking regex.h presence
configure:14864: gcc -E  conftest.c
configure:14864: $? = 0
configure:14864: result: yes
configure:14864: checking for regex.h
configure:14864: result: yes
configure:14864: checking stddef.h usability
configure:14864: gcc -c -g -O2  conftest.c >&5
configure:14864: $? = 0
configure:14864: result: yes
configure:14864: checking stddef.h presence
configure:14864: gcc -E  conftest.c
configure:14864: $? = 0
configure:14864: result: yes
configure:14864: checking for stddef.h
configure:14864: result: yes
configure:14864: checking for stdlib.h
configure:14864: result: yes
configure:14864: checking for string.h
configure:14864: result: yes
configure:14864: checking for strings.h
configure:14864: result: yes
configure:14864: checking for unistd.h
configure:14864: result: yes
configure:14864: checking utime.h usability
configure:14864: gcc -c -g -O2  conftest.c >&5
configure:14864: $? = 0
configure:14864: result: yes
configure:14864: checking utime.h presence
configure:14864: gcc -E  conftest.c
configure:14864: $? = 0
configure:14864: result: yes
configure:14864: checking for utime.h
configure:14864: result: yes
configure:14876: checking for an ANSI C-conforming const
configure:14942: gcc -c -g -O2  conftest.c >&5
configure:14942: $? = 0
configure:14949: result: yes
configure:14957: checking for uid_t in sys/types.h
configure:14976: result: yes
configure:14987: checking for mode_t
configure:14987: gcc -c -g -O2  conftest.c >&5
configure:14987: $? = 0
configure:14987: gcc -c -g -O2  conftest.c >&5
conftest.c: In function 'main':
conftest.c:78:21: error: expected expression before ')' token
 if (sizeof ((mode_t)))
                     ^
configure:14987: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof ((mode_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:14987: result: yes
configure:14998: checking for off_t
configure:14998: gcc -c -g -O2  conftest.c >&5
configure:14998: $? = 0
configure:14998: gcc -c -g -O2  conftest.c >&5
conftest.c: In function 'main':
conftest.c:78:20: error: expected expression before ')' token
 if (sizeof ((off_t)))
                    ^
configure:14998: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof ((off_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:14998: result: yes
configure:15009: checking for pid_t
configure:15009: gcc -c -g -O2  conftest.c >&5
configure:15009: $? = 0
configure:15009: gcc -c -g -O2  conftest.c >&5
conftest.c: In function 'main':
conftest.c:78:20: error: expected expression before ')' token
 if (sizeof ((pid_t)))
                    ^
configure:15009: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof ((pid_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:15009: result: yes
configure:15020: checking for size_t
configure:15020: gcc -c -g -O2  conftest.c >&5
configure:15020: $? = 0
configure:15020: gcc -c -g -O2  conftest.c >&5
conftest.c: In function 'main':
conftest.c:78:21: error: expected expression before ')' token
 if (sizeof ((size_t)))
                     ^
configure:15020: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof ((size_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:15020: result: yes
configure:15031: checking for struct stat.st_rdev
configure:15031: gcc -c -g -O2  conftest.c >&5
configure:15031: $? = 0
configure:15031: result: yes
configure:15043: checking whether byte ordering is bigendian
configure:15058: gcc -c -g -O2  conftest.c >&5
conftest.c:44:9: error: unknown type name 'not'
         not a universal capable compiler
         ^~~
conftest.c:44:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
         not a universal capable compiler
               ^~~~~~~~~
conftest.c:44:15: error: unknown type name 'universal'
configure:15058: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| /* end confdefs.h.  */
| #ifndef __APPLE_CC__
| 	       not a universal capable compiler
| 	     #endif
| 	     typedef int dummy;
| 
configure:15103: gcc -c -g -O2  conftest.c >&5
configure:15103: $? = 0
configure:15121: gcc -c -g -O2  conftest.c >&5
conftest.c: In function 'main':
conftest.c:50:4: error: unknown type name 'not'; did you mean 'ino_t'?
    not big endian
    ^~~
    ino_t
conftest.c:50:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian'
    not big endian
            ^~~~~~
configure:15121: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| 		#include <sys/param.h>
| 
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
| 		 not big endian
| 		#endif
| 
|   ;
|   return 0;
| }
configure:15249: result: no
configure:15277: checking for unistd.h
configure:15277: result: yes
configure:15287: checking for working chown
configure:15320: gcc -o conftest -g -O2   conftest.c  >&5
configure:15320: $? = 0
configure:15320: ./conftest
configure:15320: $? = 0
configure:15332: result: yes
configure:15342: checking vfork.h usability
configure:15342: gcc -c -g -O2  conftest.c >&5
conftest.c:78:10: fatal error: vfork.h: No such file or directory
 #include <vfork.h>
          ^~~~~~~~~
compilation terminated.
configure:15342: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_UNISTD_H 1
| #define HAVE_CHOWN 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <vfork.h>
configure:15342: result: no
configure:15342: checking vfork.h presence
configure:15342: gcc -E  conftest.c
conftest.c:45:10: fatal error: vfork.h: No such file or directory
 #include <vfork.h>
          ^~~~~~~~~
compilation terminated.
configure:15342: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_UNISTD_H 1
| #define HAVE_CHOWN 1
| /* end confdefs.h.  */
| #include <vfork.h>
configure:15342: result: no
configure:15342: checking for vfork.h
configure:15342: result: no
configure:15355: checking for fork
configure:15355: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:68:6: warning: conflicting types for built-in function 'fork' [-Wbuiltin-declaration-mismatch]
 char fork ();
      ^~~~
configure:15355: $? = 0
configure:15355: result: yes
configure:15355: checking for vfork
configure:15355: gcc -o conftest -g -O2   conftest.c  >&5
configure:15355: $? = 0
configure:15355: result: yes
configure:15365: checking for working fork
configure:15387: gcc -o conftest -g -O2   conftest.c  >&5
configure:15387: $? = 0
configure:15387: ./conftest
configure:15387: $? = 0
configure:15397: result: yes
configure:15418: checking for working vfork
configure:15528: result: yes
configure:15553: checking return type of signal handlers
configure:15571: gcc -c -g -O2  conftest.c >&5
conftest.c: In function 'main':
conftest.c:55:10: error: void value not ignored as it ought to be
 return *(signal (0, 0)) (0) == 1;
         ~^~~~~~~~~~~~~~~~~~
configure:15571: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_UNISTD_H 1
| #define HAVE_CHOWN 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <signal.h>
| 
| int
| main ()
| {
| return *(signal (0, 0)) (0) == 1;
|   ;
|   return 0;
| }
configure:15578: result: void
configure:15592: checking for utime.h
configure:15592: result: yes
configure:15606: checking whether utime accepts a null argument
configure:15635: gcc -o conftest -g -O2   conftest.c  >&5
configure:15635: $? = 0
configure:15635: ./conftest
configure:15635: $? = 0
configure:15645: result: yes
configure:15657: checking for vprintf
configure:15657: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:75:6: warning: conflicting types for built-in function 'vprintf' [-Wbuiltin-declaration-mismatch]
 char vprintf ();
      ^~~~~~~
configure:15657: $? = 0
configure:15657: result: yes
configure:15663: checking for _doprnt
configure:15663: gcc -o conftest -g -O2   conftest.c  >&5
/bin/ld: /tmp/ccrOfVsP.o: in function `main':
/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/build-host/opkg-0.3.6/conftest.c:87: undefined reference to `_doprnt'
collect2: error: ld returned 1 exit status
configure:15663: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_UNISTD_H 1
| #define HAVE_CHOWN 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define RETSIGTYPE void
| #define HAVE_UTIME_H 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_VPRINTF 1
| /* end confdefs.h.  */
| /* Define _doprnt to an innocuous variant, in case <limits.h> declares _doprnt.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define _doprnt innocuous__doprnt
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char _doprnt (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef _doprnt
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char _doprnt ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub__doprnt || defined __stub____doprnt
| choke me
| #endif
| 
| int
| main ()
| {
| return _doprnt ();
|   ;
|   return 0;
| }
configure:15663: result: no
configure:15677: checking for memmove
configure:15677: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:76:6: warning: conflicting types for built-in function 'memmove' [-Wbuiltin-declaration-mismatch]
 char memmove ();
      ^~~~~~~
configure:15677: $? = 0
configure:15677: result: yes
configure:15677: checking for memset
configure:15677: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:77:6: warning: conflicting types for built-in function 'memset' [-Wbuiltin-declaration-mismatch]
 char memset ();
      ^~~~~~
configure:15677: $? = 0
configure:15677: result: yes
configure:15677: checking for mkdir
configure:15677: gcc -o conftest -g -O2   conftest.c  >&5
configure:15677: $? = 0
configure:15677: result: yes
configure:15677: checking for regcomp
configure:15677: gcc -o conftest -g -O2   conftest.c  >&5
configure:15677: $? = 0
configure:15677: result: yes
configure:15677: checking for strchr
configure:15677: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:80:6: warning: conflicting types for built-in function 'strchr' [-Wbuiltin-declaration-mismatch]
 char strchr ();
      ^~~~~~
configure:15677: $? = 0
configure:15677: result: yes
configure:15677: checking for strcspn
configure:15677: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:81:6: warning: conflicting types for built-in function 'strcspn' [-Wbuiltin-declaration-mismatch]
 char strcspn ();
      ^~~~~~~
configure:15677: $? = 0
configure:15677: result: yes
configure:15677: checking for strdup
configure:15677: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:82:6: warning: conflicting types for built-in function 'strdup' [-Wbuiltin-declaration-mismatch]
 char strdup ();
      ^~~~~~
configure:15677: $? = 0
configure:15677: result: yes
configure:15677: checking for strerror
configure:15677: gcc -o conftest -g -O2   conftest.c  >&5
configure:15677: $? = 0
configure:15677: result: yes
configure:15677: checking for strndup
configure:15677: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:84:6: warning: conflicting types for built-in function 'strndup' [-Wbuiltin-declaration-mismatch]
 char strndup ();
      ^~~~~~~
configure:15677: $? = 0
configure:15677: result: yes
configure:15677: checking for strrchr
configure:15677: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:85:6: warning: conflicting types for built-in function 'strrchr' [-Wbuiltin-declaration-mismatch]
 char strrchr ();
      ^~~~~~~
configure:15677: $? = 0
configure:15677: result: yes
configure:15677: checking for strstr
configure:15677: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:86:6: warning: conflicting types for built-in function 'strstr' [-Wbuiltin-declaration-mismatch]
 char strstr ();
      ^~~~~~
configure:15677: $? = 0
configure:15677: result: yes
configure:15677: checking for strtol
configure:15677: gcc -o conftest -g -O2   conftest.c  >&5
configure:15677: $? = 0
configure:15677: result: yes
configure:15677: checking for strtoul
configure:15677: gcc -o conftest -g -O2   conftest.c  >&5
configure:15677: $? = 0
configure:15677: result: yes
configure:15677: checking for sysinfo
configure:15677: gcc -o conftest -g -O2   conftest.c  >&5
configure:15677: $? = 0
configure:15677: result: yes
configure:15677: checking for utime
configure:15677: gcc -o conftest -g -O2   conftest.c  >&5
configure:15677: $? = 0
configure:15677: result: yes
configure:15677: checking for getopt_long_only
configure:15677: gcc -o conftest -g -O2   conftest.c  >&5
configure:15677: $? = 0
configure:15677: result: yes
configure:15817: checking that generated files are newer than configure
configure:15823: result: done
configure:15895: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by opkg config.status 0.3.6, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on sumo

config.status:1181: creating Makefile
config.status:1181: creating libopkg/Makefile
config.status:1181: creating src/Makefile
config.status:1181: creating utils/Makefile
config.status:1181: creating libopkg.pc
config.status:1181: creating man/Makefile
config.status:1181: creating man/opkg.1
config.status:1181: creating man/opkg-key.1
config.status:1181: creating man/opkg.conf.5
config.status:1181: creating config.h
config.status:1410: executing depfiles commands
config.status:1487: cd libopkg       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
make[1]: Entering directory '/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/build-host/opkg-0.3.6/libopkg'
make[1]: Leaving directory '/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/build-host/opkg-0.3.6/libopkg'
config.status:1492: $? = 0
config.status:1487: cd src       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
make[1]: Entering directory '/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/build-host/opkg-0.3.6/src'
make[1]: Leaving directory '/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/build-host/opkg-0.3.6/src'
config.status:1492: $? = 0
config.status:1410: executing libtool commands

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=x86_64-pc-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_env_CC_set=set
ac_cv_env_CC_value=gcc
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CURL_CFLAGS_set=
ac_cv_env_CURL_CFLAGS_value=
ac_cv_env_CURL_LIBS_set=
ac_cv_env_CURL_LIBS_value=
ac_cv_env_GPGERR_CFLAGS_set=
ac_cv_env_GPGERR_CFLAGS_value=
ac_cv_env_GPGERR_LIBS_set=
ac_cv_env_GPGERR_LIBS_value=
ac_cv_env_GPGME_CFLAGS_set=
ac_cv_env_GPGME_CFLAGS_value=
ac_cv_env_GPGME_LIBS_set=
ac_cv_env_GPGME_LIBS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBARCHIVE_CFLAGS_set=
ac_cv_env_LIBARCHIVE_CFLAGS_value=
ac_cv_env_LIBARCHIVE_LIBS_set=
ac_cv_env_LIBARCHIVE_LIBS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_LT_SYS_LIBRARY_PATH_set=
ac_cv_env_LT_SYS_LIBRARY_PATH_value=
ac_cv_env_OPENSSL_CFLAGS_set=
ac_cv_env_OPENSSL_CFLAGS_value=
ac_cv_env_OPENSSL_LIBS_set=
ac_cv_env_OPENSSL_LIBS_value=
ac_cv_env_PATHFINDER_CFLAGS_set=
ac_cv_env_PATHFINDER_CFLAGS_value=
ac_cv_env_PATHFINDER_LIBS_set=
ac_cv_env_PATHFINDER_LIBS_value=
ac_cv_env_PKG_CONFIG_LIBDIR_set=
ac_cv_env_PKG_CONFIG_LIBDIR_value=
ac_cv_env_PKG_CONFIG_PATH_set=
ac_cv_env_PKG_CONFIG_PATH_value=
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_SOLVER_CFLAGS_set=
ac_cv_env_SOLVER_CFLAGS_value=
ac_cv_env_SOLVER_LIBS_set=
ac_cv_env_SOLVER_LIBS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_func__doprnt=no
ac_cv_func_chown_works=yes
ac_cv_func_fork=yes
ac_cv_func_fork_works=yes
ac_cv_func_getopt_long_only=yes
ac_cv_func_memmove=yes
ac_cv_func_memset=yes
ac_cv_func_mkdir=yes
ac_cv_func_regcomp=yes
ac_cv_func_strchr=yes
ac_cv_func_strcspn=yes
ac_cv_func_strdup=yes
ac_cv_func_strerror=yes
ac_cv_func_strndup=yes
ac_cv_func_strrchr=yes
ac_cv_func_strstr=yes
ac_cv_func_strtol=yes
ac_cv_func_strtoul=yes
ac_cv_func_sysinfo=yes
ac_cv_func_utime=yes
ac_cv_func_utime_null=yes
ac_cv_func_vfork=yes
ac_cv_func_vfork_works=yes
ac_cv_func_vprintf=yes
ac_cv_header_dirent_dirent_h=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_errno_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_minix_config_h=no
ac_cv_header_regex_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stddef_h=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_wait_h=yes
ac_cv_header_unistd_h=yes
ac_cv_header_utime_h=yes
ac_cv_header_vfork_h=no
ac_cv_host=x86_64-pc-linux-gnu
ac_cv_member_struct_stat_st_rdev=yes
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_FGREP='/bin/grep -F'
ac_cv_path_GREP=/bin/grep
ac_cv_path_SED=/usr/local/lib/ptxdist-2018.11.0/bin/sed
ac_cv_path_ac_pt_PKG_CONFIG=/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/pkg-config
ac_cv_path_install='/usr/local/lib/ptxdist-2018.11.0/bin/install -c'
ac_cv_path_lt_DD=/bin/dd
ac_cv_path_mkdir=/usr/local/lib/ptxdist-2018.11.0/bin/mkdir
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_OBJDUMP=objdump
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_make_make_set=yes
ac_cv_safe_to_define___extensions__=yes
ac_cv_search_opendir='none required'
ac_cv_sys_file_offset_bits=no
ac_cv_sys_largefile_CC=no
ac_cv_type_mode_t=yes
ac_cv_type_off_t=yes
ac_cv_type_pid_t=yes
ac_cv_type_signal=void
ac_cv_type_size_t=yes
ac_cv_type_uid_t=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_make_support_nested_variables=yes
am_cv_prog_cc_c_o=yes
lt_cv_ar_at_file=@
lt_cv_archive_cmds_need_lc=no
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_nm_interface='BSD nm'
lt_cv_objdir=.libs
lt_cv_path_LD=/bin/ld
lt_cv_path_NM='/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/lib/wrapper/nm -B'
lt_cv_path_mainfest_tool=no
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_pic='-fPIC -DPIC'
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=yes
lt_cv_prog_gnu_ld=yes
lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
lt_cv_shlibpath_overrides_runpath=no
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[	 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[	 ][	 ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/  {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/  {"\1", (void *) \&\1},/p'\'''
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/  {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/  {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/  {"lib\1", (void *) \&\1},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
lt_cv_sys_global_symbol_to_import=
lt_cv_sys_max_cmd_len=1572864
lt_cv_to_host_file_cmd=func_convert_file_noop
lt_cv_to_tool_file_cmd=func_convert_file_noop
lt_cv_truncate_bin='/bin/dd bs=4096 count=1'
pkg_cv_LIBARCHIVE_CFLAGS=
pkg_cv_LIBARCHIVE_LIBS=-larchive

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/build-host/opkg-0.3.6/conf/missing aclocal-1.16'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='$${TAR-tar}'
AM_BACKSLASH='\'
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='0'
AM_V='$(V)'
AR='ar'
AUTOCONF='${SHELL} /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/build-host/opkg-0.3.6/conf/missing autoconf'
AUTOHEADER='${SHELL} /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/build-host/opkg-0.3.6/conf/missing autoheader'
AUTOMAKE='${SHELL} /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/build-host/opkg-0.3.6/conf/missing automake-1.16'
AWK='gawk'
BIGENDIAN_CFLAGS=''
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2'
CLEAN_DATE='December 2018'
CPP='gcc -E'
CPPFLAGS=''
CURL_CFLAGS=''
CURL_LIBS=''
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
DLLTOOL='false'
DSYMUTIL=''
DUMPBIN=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
EXEEXT=''
FGREP='/bin/grep -F'
GPGERR_CFLAGS=''
GPGERR_CONFIG=''
GPGERR_LIBS=''
GPGME_CFLAGS=''
GPGME_CONFIG=''
GPGME_LIBS=''
GREP='/bin/grep'
HAVE_BZIP2_FALSE=''
HAVE_BZIP2_TRUE='#'
HAVE_CURL_FALSE=''
HAVE_CURL_TRUE='#'
HAVE_GPGME_FALSE=''
HAVE_GPGME_TRUE='#'
HAVE_LIBOPKG_API_FALSE=''
HAVE_LIBOPKG_API_TRUE='#'
HAVE_OPENSSL_FALSE=''
HAVE_OPENSSL_TRUE='#'
HAVE_PATHFINDER_FALSE=''
HAVE_PATHFINDER_TRUE='#'
HAVE_SHA256_FALSE=''
HAVE_SHA256_TRUE='#'
HAVE_SOLVER_INTERNAL_FALSE='#'
HAVE_SOLVER_INTERNAL_TRUE=''
HAVE_SOLVER_LIBSOLV_FALSE=''
HAVE_SOLVER_LIBSOLV_TRUE='#'
HAVE_XZ_FALSE=''
HAVE_XZ_TRUE='#'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
LD='/bin/ld -m elf_x86_64'
LDFLAGS=''
LIBARCHIVE_CFLAGS=''
LIBARCHIVE_LIBS='-larchive'
LIBOBJS=''
LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIPO=''
LN_S='ln -s'
LTLIBOBJS=''
LT_SYS_LIBRARY_PATH=''
MAKEINFO='${SHELL} /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/build-host/opkg-0.3.6/conf/missing makeinfo'
MANIFEST_TOOL=':'
MKDIR_P='/usr/local/lib/ptxdist-2018.11.0/bin/mkdir -p'
NM='/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/lib/wrapper/nm -B'
NMEDIT=''
OBJDUMP='objdump'
OBJEXT='o'
OPENSSL_CFLAGS=''
OPENSSL_LIBS=''
OTOOL64=''
OTOOL=''
PACKAGE='opkg'
PACKAGE_BUGREPORT=''
PACKAGE_NAME='opkg'
PACKAGE_STRING='opkg 0.3.6'
PACKAGE_TARNAME='opkg'
PACKAGE_URL=''
PACKAGE_VERSION='0.3.6'
PATHFINDER_CFLAGS=''
PATHFINDER_LIBS=''
PATH_SEPARATOR=':'
PKG_CONFIG='/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/pkg-config'
PKG_CONFIG_LIBDIR=''
PKG_CONFIG_PATH=''
RANLIB='ranlib'
SED='/usr/local/lib/ptxdist-2018.11.0/bin/sed'
SET_MAKE=''
SHELL='/bin/sh'
SOLVER_CFLAGS=''
SOLVER_LIBS=''
STATIC_LIBOPKG_FALSE=''
STATIC_LIBOPKG_TRUE='#'
STRIP='strip'
VERSION='0.3.6'
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_DUMPBIN=''
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE='#'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__nodep='_no'
am__quote=''
am__tar='$${TAR-tar} chof - "$$tardir"'
am__untar='$${TAR-tar} xf -'
bindir='${exec_prefix}/bin'
build='x86_64-pc-linux-gnu'
build_alias=''
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='pc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host='x86_64-pc-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='pc'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/build-host/opkg-0.3.6/conf/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='$(MKDIR_P)'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix=''
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''

## ----------- ##
## confdefs.h. ##
## ----------- ##

/* confdefs.h */
#define PACKAGE_NAME "opkg"
#define PACKAGE_TARNAME "opkg"
#define PACKAGE_VERSION "0.3.6"
#define PACKAGE_STRING "opkg 0.3.6"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_URL ""
#define PACKAGE "opkg"
#define VERSION "0.3.6"
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define __EXTENSIONS__ 1
#define _ALL_SOURCE 1
#define _GNU_SOURCE 1
#define _POSIX_PTHREAD_SEMANTICS 1
#define _TANDEM_SOURCE 1
#define HAVE_DLFCN_H 1
#define LT_OBJDIR ".libs/"
#define HAVE_SOLVER_INTERNAL 1
#define HAVE_DIRENT_H 1
#define STDC_HEADERS 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_ERRNO_H 1
#define HAVE_FCNTL_H 1
#define HAVE_MEMORY_H 1
#define HAVE_REGEX_H 1
#define HAVE_STDDEF_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UTIME_H 1
#define HAVE_STRUCT_STAT_ST_RDEV 1
#define HAVE_UNISTD_H 1
#define HAVE_CHOWN 1
#define HAVE_FORK 1
#define HAVE_VFORK 1
#define HAVE_WORKING_VFORK 1
#define HAVE_WORKING_FORK 1
#define RETSIGTYPE void
#define HAVE_UTIME_H 1
#define HAVE_UTIME_NULL 1
#define HAVE_VPRINTF 1
#define HAVE_MEMMOVE 1
#define HAVE_MEMSET 1
#define HAVE_MKDIR 1
#define HAVE_REGCOMP 1
#define HAVE_STRCHR 1
#define HAVE_STRCSPN 1
#define HAVE_STRDUP 1
#define HAVE_STRERROR 1
#define HAVE_STRNDUP 1
#define HAVE_STRRCHR 1
#define HAVE_STRSTR 1
#define HAVE_STRTOL 1
#define HAVE_STRTOUL 1
#define HAVE_SYSINFO 1
#define HAVE_UTIME 1
#define HAVE_GETOPT_LONG_ONLY 1

configure: exit 0

[-- Attachment #3: config.log --]
[-- Type: text/x-log, Size: 64974 bytes --]

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by opkg configure 0.3.6, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  $ ./configure 

## --------- ##
## Platform. ##
## --------- ##

hostname = sumo
uname -m = x86_64
uname -r = 4.19.4-arch1-1-ARCH
uname -s = Linux
uname -v = #1 SMP PREEMPT Fri Nov 23 09:06:58 UTC 2018

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /home/friesen/bin
PATH: /home/friesen/bin
PATH: /home/friesen/bin
PATH: /home/friesen/bin
PATH: /home/friesen/go/bin
PATH: /home/friesen/.cargo/bin
PATH: /home/friesen/.cargo/bin
PATH: /home/friesen/.cargo/bin
PATH: /opt/VSCode-linux-x64
PATH: /home/friesen/.nimble/bin
PATH: /home/friesen/.cargo/bin
PATH: /home/friesen/.local/bin
PATH: /home/friesen/go/bin
PATH: /home/friesen/.gem/ruby/2.4.0/bin
PATH: /home/friesen/bin
PATH: /bin
PATH: /usr/bin
PATH: /usr/local/bin
PATH: /usr/local/sbin
PATH: /usr/lib/jvm/default/bin
PATH: /usr/bin/site_perl
PATH: /usr/bin/vendor_perl
PATH: /usr/bin/core_perl
PATH: /usr/share/crossworks_for_arm_3.7/bin
PATH: /usr/lib/jvm/default/bin
PATH: /usr/bin/site_perl
PATH: /usr/bin/vendor_perl
PATH: /usr/bin/core_perl


## ----------- ##
## Core tests. ##
## ----------- ##

configure:2484: checking for a BSD-compatible install
configure:2552: result: /bin/install -c
configure:2563: checking whether build environment is sane
configure:2618: result: yes
configure:2769: checking for a thread-safe mkdir -p
configure:2808: result: /bin/mkdir -p
configure:2815: checking for gawk
configure:2831: found /bin/gawk
configure:2842: result: gawk
configure:2853: checking whether make sets $(MAKE)
configure:2875: result: yes
configure:2904: checking whether make supports nested variables
configure:2921: result: yes
configure:3054: checking build system type
configure:3068: result: x86_64-pc-linux-gnu
configure:3088: checking host system type
configure:3101: result: x86_64-pc-linux-gnu
configure:3125: checking whether make supports the include directive
configure:3140: make -f confmf.GNU && cat confinc.out
this is the am__doit target
configure:3143: $? = 0
configure:3162: result: yes (GNU style)
configure:3232: checking for gcc
configure:3248: found /bin/gcc
configure:3259: result: gcc
configure:3488: checking for C compiler version
configure:3497: gcc --version >&5
gcc (GCC) 8.2.1 20180831
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:3508: $? = 0
configure:3497: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --enable-libmpx --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp --enable-cet=auto
Thread model: posix
gcc version 8.2.1 20180831 (GCC) 
configure:3508: $? = 0
configure:3497: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:3508: $? = 1
configure:3497: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
gcc: fatal error: no input files
compilation terminated.
configure:3508: $? = 1
configure:3528: checking whether the C compiler works
configure:3550: gcc    conftest.c  >&5
configure:3554: $? = 0
configure:3602: result: yes
configure:3605: checking for C compiler default output file name
configure:3607: result: a.out
configure:3613: checking for suffix of executables
configure:3620: gcc -o conftest    conftest.c  >&5
configure:3624: $? = 0
configure:3646: result: 
configure:3668: checking whether we are cross compiling
configure:3676: gcc -o conftest    conftest.c  >&5
configure:3680: $? = 0
configure:3687: ./conftest
configure:3691: $? = 0
configure:3706: result: no
configure:3711: checking for suffix of object files
configure:3733: gcc -c   conftest.c >&5
configure:3737: $? = 0
configure:3758: result: o
configure:3762: checking whether we are using the GNU C compiler
configure:3781: gcc -c   conftest.c >&5
configure:3781: $? = 0
configure:3790: result: yes
configure:3799: checking whether gcc accepts -g
configure:3819: gcc -c -g  conftest.c >&5
configure:3819: $? = 0
configure:3860: result: yes
configure:3877: checking for gcc option to accept ISO C89
configure:3940: gcc  -c -g -O2  conftest.c >&5
configure:3940: $? = 0
configure:3953: result: none needed
configure:3978: checking whether gcc understands -c and -o together
configure:4000: gcc -c conftest.c -o conftest2.o
configure:4003: $? = 0
configure:4000: gcc -c conftest.c -o conftest2.o
configure:4003: $? = 0
configure:4015: result: yes
configure:4034: checking dependency style of gcc
configure:4145: result: gcc3
configure:4166: checking how to run the C preprocessor
configure:4197: gcc -E  conftest.c
configure:4197: $? = 0
configure:4211: gcc -E  conftest.c
conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
          ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:4211: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4236: result: gcc -E
configure:4256: gcc -E  conftest.c
configure:4256: $? = 0
configure:4270: gcc -E  conftest.c
conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
          ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:4270: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4299: checking for grep that handles long lines and -e
configure:4357: result: /bin/grep
configure:4362: checking for egrep
configure:4424: result: /bin/grep -E
configure:4429: checking for ANSI C header files
configure:4449: gcc -c -g -O2  conftest.c >&5
configure:4449: $? = 0
configure:4522: gcc -o conftest -g -O2   conftest.c  >&5
configure:4522: $? = 0
configure:4522: ./conftest
configure:4522: $? = 0
configure:4533: result: yes
configure:4546: checking for sys/types.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4546: checking for sys/stat.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4546: checking for stdlib.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4546: checking for string.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4546: checking for memory.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4546: checking for strings.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4546: checking for inttypes.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4546: checking for stdint.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4546: checking for unistd.h
configure:4546: gcc -c -g -O2  conftest.c >&5
configure:4546: $? = 0
configure:4546: result: yes
configure:4559: checking minix/config.h usability
configure:4559: gcc -c -g -O2  conftest.c >&5
conftest.c:54:10: fatal error: minix/config.h: No such file or directory
 #include <minix/config.h>
          ^~~~~~~~~~~~~~~~
compilation terminated.
configure:4559: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <minix/config.h>
configure:4559: result: no
configure:4559: checking minix/config.h presence
configure:4559: gcc -E  conftest.c
conftest.c:21:10: fatal error: minix/config.h: No such file or directory
 #include <minix/config.h>
          ^~~~~~~~~~~~~~~~
compilation terminated.
configure:4559: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <minix/config.h>
configure:4559: result: no
configure:4559: checking for minix/config.h
configure:4559: result: no
configure:4580: checking whether it is safe to define __EXTENSIONS__
configure:4598: gcc -c -g -O2  conftest.c >&5
configure:4598: $? = 0
configure:4605: result: yes
configure:4638: checking for special C compiler options needed for large files
configure:4683: result: no
configure:4689: checking for _FILE_OFFSET_BITS value needed for large files
configure:4714: gcc -c -g -O2  conftest.c >&5
configure:4714: $? = 0
configure:4746: result: no
configure:4843: checking whether make supports nested variables
configure:4860: result: yes
configure:4894: checking for gawk
configure:4921: result: gawk
configure:4980: checking for gcc
configure:5007: result: gcc
configure:5236: checking for C compiler version
configure:5245: gcc --version >&5
gcc (GCC) 8.2.1 20180831
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:5256: $? = 0
configure:5245: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --enable-libmpx --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp --enable-cet=auto
Thread model: posix
gcc version 8.2.1 20180831 (GCC) 
configure:5256: $? = 0
configure:5245: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:5256: $? = 1
configure:5245: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
gcc: fatal error: no input files
compilation terminated.
configure:5256: $? = 1
configure:5260: checking whether we are using the GNU C compiler
configure:5288: result: yes
configure:5297: checking whether gcc accepts -g
configure:5358: result: yes
configure:5375: checking for gcc option to accept ISO C89
configure:5451: result: none needed
configure:5476: checking whether gcc understands -c and -o together
configure:5513: result: yes
configure:5532: checking dependency style of gcc
configure:5643: result: gcc3
configure:5659: checking whether ln -s works
configure:5663: result: yes
configure:5816: checking how to print strings
configure:5843: result: printf
configure:5864: checking for a sed that does not truncate output
configure:5928: result: /bin/sed
configure:5946: checking for fgrep
configure:6008: result: /bin/grep -F
configure:6043: checking for ld used by gcc
configure:6110: result: /bin/ld
configure:6117: checking if the linker (/bin/ld) is GNU ld
configure:6132: result: yes
configure:6144: checking for BSD- or MS-compatible name lister (nm)
configure:6198: result: /bin/nm -B
configure:6328: checking the name lister (/bin/nm -B) interface
configure:6335: gcc -c -g -O2  conftest.c >&5
configure:6338: /bin/nm -B "conftest.o"
configure:6341: output
0000000000000000 B some_variable
configure:6348: result: BSD nm
configure:6352: checking the maximum length of command line arguments
configure:6483: result: 1572864
configure:6531: checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format
configure:6571: result: func_convert_file_noop
configure:6578: checking how to convert x86_64-pc-linux-gnu file names to toolchain format
configure:6598: result: func_convert_file_noop
configure:6605: checking for /bin/ld option to reload object files
configure:6612: result: -r
configure:6686: checking for objdump
configure:6702: found /bin/objdump
configure:6713: result: objdump
configure:6745: checking how to recognize dependent libraries
configure:6945: result: pass_all
configure:7030: checking for dlltool
configure:7060: result: no
configure:7090: checking how to associate runtime and link libraries
configure:7117: result: printf %s\n
configure:7177: checking for ar
configure:7193: found /bin/ar
configure:7204: result: ar
configure:7257: checking for archiver @FILE support
configure:7274: gcc -c -g -O2  conftest.c >&5
configure:7274: $? = 0
configure:7277: ar cr libconftest.a @conftest.lst >&5
configure:7280: $? = 0
configure:7285: ar cr libconftest.a @conftest.lst >&5
ar: conftest.o: No such file or directory
configure:7288: $? = 1
configure:7300: result: @
configure:7358: checking for strip
configure:7374: found /bin/strip
configure:7385: result: strip
configure:7457: checking for ranlib
configure:7473: found /bin/ranlib
configure:7484: result: ranlib
configure:7586: checking command to parse /bin/nm -B output from gcc object
configure:7739: gcc -c -g -O2  conftest.c >&5
configure:7742: $? = 0
configure:7746: /bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
configure:7749: $? = 0
configure:7815: gcc -o conftest -g -O2   conftest.c conftstm.o >&5
configure:7818: $? = 0
configure:7856: result: ok
configure:7903: checking for sysroot
configure:7933: result: no
configure:7940: checking for a working dd
configure:7978: result: /bin/dd
configure:7982: checking how to truncate binary pipes
configure:7997: result: /bin/dd bs=4096 count=1
configure:8133: gcc -c -g -O2  conftest.c >&5
configure:8136: $? = 0
configure:8326: checking for mt
configure:8356: result: no
configure:8376: checking if : is a manifest tool
configure:8382: : '-?'
configure:8390: result: no
configure:9064: checking for dlfcn.h
configure:9064: gcc -c -g -O2  conftest.c >&5
configure:9064: $? = 0
configure:9064: result: yes
configure:9320: checking for objdir
configure:9335: result: .libs
configure:9599: checking if gcc supports -fno-rtti -fno-exceptions
configure:9617: gcc -c -g -O2  -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C
configure:9621: $? = 0
configure:9634: result: no
configure:9992: checking for gcc option to produce PIC
configure:9999: result: -fPIC -DPIC
configure:10007: checking if gcc PIC flag -fPIC -DPIC works
configure:10025: gcc -c -g -O2  -fPIC -DPIC -DPIC conftest.c >&5
configure:10029: $? = 0
configure:10042: result: yes
configure:10071: checking if gcc static flag -static works
configure:10099: result: yes
configure:10114: checking if gcc supports -c -o file.o
configure:10135: gcc -c -g -O2  -o out/conftest2.o conftest.c >&5
configure:10139: $? = 0
configure:10161: result: yes
configure:10169: checking if gcc supports -c -o file.o
configure:10216: result: yes
configure:10249: checking whether the gcc linker (/bin/ld -m elf_x86_64) supports shared libraries
configure:11510: result: yes
configure:11547: checking whether -lc should be explicitly linked in
configure:11555: gcc -c -g -O2  conftest.c >&5
configure:11558: $? = 0
configure:11573: gcc -shared  -fPIC -DPIC conftest.o  -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep  -lc  \>/dev/null 2\>\&1
configure:11576: $? = 0
configure:11590: result: no
configure:11750: checking dynamic linker characteristics
configure:12331: gcc -o conftest -g -O2   -Wl,-rpath -Wl,/foo conftest.c  >&5
configure:12331: $? = 0
configure:12568: result: GNU/Linux ld.so
configure:12690: checking how to hardcode library paths into programs
configure:12715: result: immediate
configure:13263: checking whether stripping libraries is possible
configure:13272: result: yes
configure:13314: checking if libtool supports shared libraries
configure:13316: result: yes
configure:13319: checking whether to build shared libraries
configure:13344: result: yes
configure:13347: checking whether to build static libraries
configure:13351: result: yes
configure:13442: checking for pkg-config
configure:13460: found /bin/pkg-config
configure:13472: result: /bin/pkg-config
configure:13497: checking pkg-config is at least version 0.20
configure:13500: result: yes
configure:13514: checking for libarchive
configure:13521: $PKG_CONFIG --exists --print-errors "libarchive"
configure:13524: $? = 0
configure:13538: $PKG_CONFIG --exists --print-errors "libarchive"
configure:13541: $? = 0
configure:13599: result: yes
configure:13778: checking for libcurl
configure:13785: $PKG_CONFIG --exists --print-errors "libcurl"
configure:13788: $? = 0
configure:13802: $PKG_CONFIG --exists --print-errors "libcurl"
configure:13805: $? = 0
configure:13863: result: yes
configure:13947: checking if openssl is available
configure:13952: checking for openssl
configure:13959: $PKG_CONFIG --exists --print-errors "openssl"
configure:13962: $? = 0
configure:13976: $PKG_CONFIG --exists --print-errors "openssl"
configure:13979: $? = 0
configure:14017: result: yes
configure:14022: result: yes
configure:14214: checking for gpgme >= 1.0.0
configure:14221: $PKG_CONFIG --exists --print-errors "gpgme >= $min_gpgme_version"
Package gpgme was not found in the pkg-config search path.
Perhaps you should add the directory containing `gpgme.pc'
to the PKG_CONFIG_PATH environment variable
Package 'gpgme', required by 'virtual:world', not found
configure:14224: $? = 1
configure:14238: $PKG_CONFIG --exists --print-errors "gpgme >= $min_gpgme_version"
Package gpgme was not found in the pkg-config search path.
Perhaps you should add the directory containing `gpgme.pc'
to the PKG_CONFIG_PATH environment variable
Package 'gpgme', required by 'virtual:world', not found
configure:14241: $? = 1
configure:14255: result: no
Package 'gpgme', required by 'virtual:world', not found
configure:14299: checking for gpgme-config
configure:14317: found /bin/gpgme-config
configure:14330: result: /bin/gpgme-config
configure:14358: checking for GPGME - version >= 1.0.0
configure:14399: result: yes
configure:14415: result: yes
configure:14427: checking for gpg-error
configure:14434: $PKG_CONFIG --exists --print-errors "gpg-error"
Package gpg-error was not found in the pkg-config search path.
Perhaps you should add the directory containing `gpg-error.pc'
to the PKG_CONFIG_PATH environment variable
Package 'gpg-error', required by 'virtual:world', not found
configure:14437: $? = 1
configure:14451: $PKG_CONFIG --exists --print-errors "gpg-error"
Package gpg-error was not found in the pkg-config search path.
Perhaps you should add the directory containing `gpg-error.pc'
to the PKG_CONFIG_PATH environment variable
Package 'gpg-error', required by 'virtual:world', not found
configure:14454: $? = 1
configure:14468: result: no
Package 'gpg-error', required by 'virtual:world', not found
configure:14501: checking for gpg-error-config
configure:14519: found /bin/gpg-error-config
configure:14532: result: /bin/gpg-error-config
configure:14566: checking for dirent.h that defines DIR
configure:14585: gcc -c -g -O2  conftest.c >&5
configure:14585: $? = 0
configure:14593: result: yes
configure:14606: checking for library containing opendir
configure:14637: gcc -o conftest -g -O2   conftest.c  >&5
configure:14637: $? = 0
configure:14654: result: none required
configure:14721: checking for ANSI C header files
configure:14825: result: yes
configure:14833: checking for sys/wait.h that is POSIX.1 compatible
configure:14859: gcc -c -g -O2  conftest.c >&5
configure:14859: $? = 0
configure:14866: result: yes
configure:14877: checking errno.h usability
configure:14877: gcc -c -g -O2  conftest.c >&5
configure:14877: $? = 0
configure:14877: result: yes
configure:14877: checking errno.h presence
configure:14877: gcc -E  conftest.c
configure:14877: $? = 0
configure:14877: result: yes
configure:14877: checking for errno.h
configure:14877: result: yes
configure:14877: checking fcntl.h usability
configure:14877: gcc -c -g -O2  conftest.c >&5
configure:14877: $? = 0
configure:14877: result: yes
configure:14877: checking fcntl.h presence
configure:14877: gcc -E  conftest.c
configure:14877: $? = 0
configure:14877: result: yes
configure:14877: checking for fcntl.h
configure:14877: result: yes
configure:14877: checking for memory.h
configure:14877: result: yes
configure:14877: checking regex.h usability
configure:14877: gcc -c -g -O2  conftest.c >&5
configure:14877: $? = 0
configure:14877: result: yes
configure:14877: checking regex.h presence
configure:14877: gcc -E  conftest.c
configure:14877: $? = 0
configure:14877: result: yes
configure:14877: checking for regex.h
configure:14877: result: yes
configure:14877: checking stddef.h usability
configure:14877: gcc -c -g -O2  conftest.c >&5
configure:14877: $? = 0
configure:14877: result: yes
configure:14877: checking stddef.h presence
configure:14877: gcc -E  conftest.c
configure:14877: $? = 0
configure:14877: result: yes
configure:14877: checking for stddef.h
configure:14877: result: yes
configure:14877: checking for stdlib.h
configure:14877: result: yes
configure:14877: checking for string.h
configure:14877: result: yes
configure:14877: checking for strings.h
configure:14877: result: yes
configure:14877: checking for unistd.h
configure:14877: result: yes
configure:14877: checking utime.h usability
configure:14877: gcc -c -g -O2  conftest.c >&5
configure:14877: $? = 0
configure:14877: result: yes
configure:14877: checking utime.h presence
configure:14877: gcc -E  conftest.c
configure:14877: $? = 0
configure:14877: result: yes
configure:14877: checking for utime.h
configure:14877: result: yes
configure:14889: checking for an ANSI C-conforming const
configure:14955: gcc -c -g -O2  conftest.c >&5
configure:14955: $? = 0
configure:14962: result: yes
configure:14970: checking for uid_t in sys/types.h
configure:14989: result: yes
configure:15000: checking for mode_t
configure:15000: gcc -c -g -O2  conftest.c >&5
configure:15000: $? = 0
configure:15000: gcc -c -g -O2  conftest.c >&5
conftest.c: In function 'main':
conftest.c:83:21: error: expected expression before ')' token
 if (sizeof ((mode_t)))
                     ^
configure:15000: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_XZ 1
| #define HAVE_CURL 1
| #define HAVE_CURL 1
| #define HAVE_SSLCURL 1
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_GPGME 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof ((mode_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:15000: result: yes
configure:15011: checking for off_t
configure:15011: gcc -c -g -O2  conftest.c >&5
configure:15011: $? = 0
configure:15011: gcc -c -g -O2  conftest.c >&5
conftest.c: In function 'main':
conftest.c:83:20: error: expected expression before ')' token
 if (sizeof ((off_t)))
                    ^
configure:15011: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_XZ 1
| #define HAVE_CURL 1
| #define HAVE_CURL 1
| #define HAVE_SSLCURL 1
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_GPGME 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof ((off_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:15011: result: yes
configure:15022: checking for pid_t
configure:15022: gcc -c -g -O2  conftest.c >&5
configure:15022: $? = 0
configure:15022: gcc -c -g -O2  conftest.c >&5
conftest.c: In function 'main':
conftest.c:83:20: error: expected expression before ')' token
 if (sizeof ((pid_t)))
                    ^
configure:15022: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_XZ 1
| #define HAVE_CURL 1
| #define HAVE_CURL 1
| #define HAVE_SSLCURL 1
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_GPGME 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof ((pid_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:15022: result: yes
configure:15033: checking for size_t
configure:15033: gcc -c -g -O2  conftest.c >&5
configure:15033: $? = 0
configure:15033: gcc -c -g -O2  conftest.c >&5
conftest.c: In function 'main':
conftest.c:83:21: error: expected expression before ')' token
 if (sizeof ((size_t)))
                     ^
configure:15033: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_XZ 1
| #define HAVE_CURL 1
| #define HAVE_CURL 1
| #define HAVE_SSLCURL 1
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_GPGME 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof ((size_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:15033: result: yes
configure:15044: checking for struct stat.st_rdev
configure:15044: gcc -c -g -O2  conftest.c >&5
configure:15044: $? = 0
configure:15044: result: yes
configure:15056: checking whether byte ordering is bigendian
configure:15071: gcc -c -g -O2  conftest.c >&5
conftest.c:49:9: error: unknown type name 'not'
         not a universal capable compiler
         ^~~
conftest.c:49:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
         not a universal capable compiler
               ^~~~~~~~~
conftest.c:49:15: error: unknown type name 'universal'
configure:15071: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_XZ 1
| #define HAVE_CURL 1
| #define HAVE_CURL 1
| #define HAVE_SSLCURL 1
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_GPGME 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| /* end confdefs.h.  */
| #ifndef __APPLE_CC__
| 	       not a universal capable compiler
| 	     #endif
| 	     typedef int dummy;
| 
configure:15116: gcc -c -g -O2  conftest.c >&5
configure:15116: $? = 0
configure:15134: gcc -c -g -O2  conftest.c >&5
conftest.c: In function 'main':
conftest.c:55:4: error: unknown type name 'not'; did you mean 'ino_t'?
    not big endian
    ^~~
    ino_t
conftest.c:55:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian'
    not big endian
            ^~~~~~
configure:15134: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_XZ 1
| #define HAVE_CURL 1
| #define HAVE_CURL 1
| #define HAVE_SSLCURL 1
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_GPGME 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| 		#include <sys/param.h>
| 
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
| 		 not big endian
| 		#endif
| 
|   ;
|   return 0;
| }
configure:15262: result: no
configure:15290: checking for unistd.h
configure:15290: result: yes
configure:15300: checking for working chown
configure:15333: gcc -o conftest -g -O2   conftest.c  >&5
configure:15333: $? = 0
configure:15333: ./conftest
configure:15333: $? = 0
configure:15345: result: yes
configure:15355: checking vfork.h usability
configure:15355: gcc -c -g -O2  conftest.c >&5
conftest.c:83:10: fatal error: vfork.h: No such file or directory
 #include <vfork.h>
          ^~~~~~~~~
compilation terminated.
configure:15355: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_XZ 1
| #define HAVE_CURL 1
| #define HAVE_CURL 1
| #define HAVE_SSLCURL 1
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_GPGME 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_UNISTD_H 1
| #define HAVE_CHOWN 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <vfork.h>
configure:15355: result: no
configure:15355: checking vfork.h presence
configure:15355: gcc -E  conftest.c
conftest.c:50:10: fatal error: vfork.h: No such file or directory
 #include <vfork.h>
          ^~~~~~~~~
compilation terminated.
configure:15355: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_XZ 1
| #define HAVE_CURL 1
| #define HAVE_CURL 1
| #define HAVE_SSLCURL 1
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_GPGME 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_UNISTD_H 1
| #define HAVE_CHOWN 1
| /* end confdefs.h.  */
| #include <vfork.h>
configure:15355: result: no
configure:15355: checking for vfork.h
configure:15355: result: no
configure:15368: checking for fork
configure:15368: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:73:6: warning: conflicting types for built-in function 'fork' [-Wbuiltin-declaration-mismatch]
 char fork ();
      ^~~~
configure:15368: $? = 0
configure:15368: result: yes
configure:15368: checking for vfork
configure:15368: gcc -o conftest -g -O2   conftest.c  >&5
configure:15368: $? = 0
configure:15368: result: yes
configure:15378: checking for working fork
configure:15400: gcc -o conftest -g -O2   conftest.c  >&5
configure:15400: $? = 0
configure:15400: ./conftest
configure:15400: $? = 0
configure:15410: result: yes
configure:15431: checking for working vfork
configure:15541: result: yes
configure:15566: checking return type of signal handlers
configure:15584: gcc -c -g -O2  conftest.c >&5
conftest.c: In function 'main':
conftest.c:60:10: error: void value not ignored as it ought to be
 return *(signal (0, 0)) (0) == 1;
         ~^~~~~~~~~~~~~~~~~~
configure:15584: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_XZ 1
| #define HAVE_CURL 1
| #define HAVE_CURL 1
| #define HAVE_SSLCURL 1
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_GPGME 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_UNISTD_H 1
| #define HAVE_CHOWN 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <signal.h>
| 
| int
| main ()
| {
| return *(signal (0, 0)) (0) == 1;
|   ;
|   return 0;
| }
configure:15591: result: void
configure:15605: checking for utime.h
configure:15605: result: yes
configure:15619: checking whether utime accepts a null argument
configure:15648: gcc -o conftest -g -O2   conftest.c  >&5
configure:15648: $? = 0
configure:15648: ./conftest
configure:15648: $? = 0
configure:15658: result: yes
configure:15670: checking for vprintf
configure:15670: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:80:6: warning: conflicting types for built-in function 'vprintf' [-Wbuiltin-declaration-mismatch]
 char vprintf ();
      ^~~~~~~
configure:15670: $? = 0
configure:15670: result: yes
configure:15676: checking for _doprnt
configure:15676: gcc -o conftest -g -O2   conftest.c  >&5
/bin/ld: /tmp/ccg5Zehp.o: in function `main':
/home/friesen/gitlab/opkg-0.3.6/conftest.c:92: undefined reference to `_doprnt'
collect2: error: ld returned 1 exit status
configure:15676: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "opkg"
| #define PACKAGE_TARNAME "opkg"
| #define PACKAGE_VERSION "0.3.6"
| #define PACKAGE_STRING "opkg 0.3.6"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "opkg"
| #define VERSION "0.3.6"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_XZ 1
| #define HAVE_CURL 1
| #define HAVE_CURL 1
| #define HAVE_SSLCURL 1
| #define HAVE_SOLVER_INTERNAL 1
| #define HAVE_GPGME 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_REGEX_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_UNISTD_H 1
| #define HAVE_CHOWN 1
| #define HAVE_FORK 1
| #define HAVE_VFORK 1
| #define HAVE_WORKING_VFORK 1
| #define HAVE_WORKING_FORK 1
| #define RETSIGTYPE void
| #define HAVE_UTIME_H 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_VPRINTF 1
| /* end confdefs.h.  */
| /* Define _doprnt to an innocuous variant, in case <limits.h> declares _doprnt.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define _doprnt innocuous__doprnt
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char _doprnt (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef _doprnt
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char _doprnt ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub__doprnt || defined __stub____doprnt
| choke me
| #endif
| 
| int
| main ()
| {
| return _doprnt ();
|   ;
|   return 0;
| }
configure:15676: result: no
configure:15690: checking for memmove
configure:15690: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:81:6: warning: conflicting types for built-in function 'memmove' [-Wbuiltin-declaration-mismatch]
 char memmove ();
      ^~~~~~~
configure:15690: $? = 0
configure:15690: result: yes
configure:15690: checking for memset
configure:15690: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:82:6: warning: conflicting types for built-in function 'memset' [-Wbuiltin-declaration-mismatch]
 char memset ();
      ^~~~~~
configure:15690: $? = 0
configure:15690: result: yes
configure:15690: checking for mkdir
configure:15690: gcc -o conftest -g -O2   conftest.c  >&5
configure:15690: $? = 0
configure:15690: result: yes
configure:15690: checking for regcomp
configure:15690: gcc -o conftest -g -O2   conftest.c  >&5
configure:15690: $? = 0
configure:15690: result: yes
configure:15690: checking for strchr
configure:15690: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:85:6: warning: conflicting types for built-in function 'strchr' [-Wbuiltin-declaration-mismatch]
 char strchr ();
      ^~~~~~
configure:15690: $? = 0
configure:15690: result: yes
configure:15690: checking for strcspn
configure:15690: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:86:6: warning: conflicting types for built-in function 'strcspn' [-Wbuiltin-declaration-mismatch]
 char strcspn ();
      ^~~~~~~
configure:15690: $? = 0
configure:15690: result: yes
configure:15690: checking for strdup
configure:15690: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:87:6: warning: conflicting types for built-in function 'strdup' [-Wbuiltin-declaration-mismatch]
 char strdup ();
      ^~~~~~
configure:15690: $? = 0
configure:15690: result: yes
configure:15690: checking for strerror
configure:15690: gcc -o conftest -g -O2   conftest.c  >&5
configure:15690: $? = 0
configure:15690: result: yes
configure:15690: checking for strndup
configure:15690: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:89:6: warning: conflicting types for built-in function 'strndup' [-Wbuiltin-declaration-mismatch]
 char strndup ();
      ^~~~~~~
configure:15690: $? = 0
configure:15690: result: yes
configure:15690: checking for strrchr
configure:15690: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:90:6: warning: conflicting types for built-in function 'strrchr' [-Wbuiltin-declaration-mismatch]
 char strrchr ();
      ^~~~~~~
configure:15690: $? = 0
configure:15690: result: yes
configure:15690: checking for strstr
configure:15690: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:91:6: warning: conflicting types for built-in function 'strstr' [-Wbuiltin-declaration-mismatch]
 char strstr ();
      ^~~~~~
configure:15690: $? = 0
configure:15690: result: yes
configure:15690: checking for strtol
configure:15690: gcc -o conftest -g -O2   conftest.c  >&5
configure:15690: $? = 0
configure:15690: result: yes
configure:15690: checking for strtoul
configure:15690: gcc -o conftest -g -O2   conftest.c  >&5
configure:15690: $? = 0
configure:15690: result: yes
configure:15690: checking for sysinfo
configure:15690: gcc -o conftest -g -O2   conftest.c  >&5
configure:15690: $? = 0
configure:15690: result: yes
configure:15690: checking for utime
configure:15690: gcc -o conftest -g -O2   conftest.c  >&5
configure:15690: $? = 0
configure:15690: result: yes
configure:15690: checking for getopt_long_only
configure:15690: gcc -o conftest -g -O2   conftest.c  >&5
configure:15690: $? = 0
configure:15690: result: yes
configure:15830: checking that generated files are newer than configure
configure:15836: result: done
configure:15908: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by opkg config.status 0.3.6, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on sumo

config.status:1186: creating Makefile
config.status:1186: creating libopkg/Makefile
config.status:1186: creating src/Makefile
config.status:1186: creating utils/Makefile
config.status:1186: creating libopkg.pc
config.status:1186: creating man/Makefile
config.status:1186: creating man/opkg.1
config.status:1186: creating man/opkg-key.1
config.status:1186: creating man/opkg.conf.5
config.status:1186: creating config.h
config.status:1415: executing depfiles commands
config.status:1492: cd libopkg       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1497: $? = 0
config.status:1492: cd src       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
config.status:1497: $? = 0
config.status:1415: executing libtool commands

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=x86_64-pc-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CURL_CFLAGS_set=
ac_cv_env_CURL_CFLAGS_value=
ac_cv_env_CURL_LIBS_set=
ac_cv_env_CURL_LIBS_value=
ac_cv_env_GPGERR_CFLAGS_set=
ac_cv_env_GPGERR_CFLAGS_value=
ac_cv_env_GPGERR_LIBS_set=
ac_cv_env_GPGERR_LIBS_value=
ac_cv_env_GPGME_CFLAGS_set=
ac_cv_env_GPGME_CFLAGS_value=
ac_cv_env_GPGME_LIBS_set=
ac_cv_env_GPGME_LIBS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBARCHIVE_CFLAGS_set=
ac_cv_env_LIBARCHIVE_CFLAGS_value=
ac_cv_env_LIBARCHIVE_LIBS_set=
ac_cv_env_LIBARCHIVE_LIBS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_LT_SYS_LIBRARY_PATH_set=
ac_cv_env_LT_SYS_LIBRARY_PATH_value=
ac_cv_env_OPENSSL_CFLAGS_set=
ac_cv_env_OPENSSL_CFLAGS_value=
ac_cv_env_OPENSSL_LIBS_set=
ac_cv_env_OPENSSL_LIBS_value=
ac_cv_env_PATHFINDER_CFLAGS_set=
ac_cv_env_PATHFINDER_CFLAGS_value=
ac_cv_env_PATHFINDER_LIBS_set=
ac_cv_env_PATHFINDER_LIBS_value=
ac_cv_env_PKG_CONFIG_LIBDIR_set=
ac_cv_env_PKG_CONFIG_LIBDIR_value=
ac_cv_env_PKG_CONFIG_PATH_set=
ac_cv_env_PKG_CONFIG_PATH_value=
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_SOLVER_CFLAGS_set=
ac_cv_env_SOLVER_CFLAGS_value=
ac_cv_env_SOLVER_LIBS_set=
ac_cv_env_SOLVER_LIBS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_func__doprnt=no
ac_cv_func_chown_works=yes
ac_cv_func_fork=yes
ac_cv_func_fork_works=yes
ac_cv_func_getopt_long_only=yes
ac_cv_func_memmove=yes
ac_cv_func_memset=yes
ac_cv_func_mkdir=yes
ac_cv_func_regcomp=yes
ac_cv_func_strchr=yes
ac_cv_func_strcspn=yes
ac_cv_func_strdup=yes
ac_cv_func_strerror=yes
ac_cv_func_strndup=yes
ac_cv_func_strrchr=yes
ac_cv_func_strstr=yes
ac_cv_func_strtol=yes
ac_cv_func_strtoul=yes
ac_cv_func_sysinfo=yes
ac_cv_func_utime=yes
ac_cv_func_utime_null=yes
ac_cv_func_vfork=yes
ac_cv_func_vfork_works=yes
ac_cv_func_vprintf=yes
ac_cv_header_dirent_dirent_h=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_errno_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_minix_config_h=no
ac_cv_header_regex_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stddef_h=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_wait_h=yes
ac_cv_header_unistd_h=yes
ac_cv_header_utime_h=yes
ac_cv_header_vfork_h=no
ac_cv_host=x86_64-pc-linux-gnu
ac_cv_member_struct_stat_st_rdev=yes
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_FGREP='/bin/grep -F'
ac_cv_path_GPGERR_CONFIG=/bin/gpg-error-config
ac_cv_path_GPGME_CONFIG=/bin/gpgme-config
ac_cv_path_GREP=/bin/grep
ac_cv_path_SED=/bin/sed
ac_cv_path_ac_pt_PKG_CONFIG=/bin/pkg-config
ac_cv_path_install='/bin/install -c'
ac_cv_path_lt_DD=/bin/dd
ac_cv_path_mkdir=/bin/mkdir
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_OBJDUMP=objdump
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_make_make_set=yes
ac_cv_safe_to_define___extensions__=yes
ac_cv_search_opendir='none required'
ac_cv_sys_file_offset_bits=no
ac_cv_sys_largefile_CC=no
ac_cv_type_mode_t=yes
ac_cv_type_off_t=yes
ac_cv_type_pid_t=yes
ac_cv_type_signal=void
ac_cv_type_size_t=yes
ac_cv_type_uid_t=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_make_support_nested_variables=yes
am_cv_prog_cc_c_o=yes
lt_cv_ar_at_file=@
lt_cv_archive_cmds_need_lc=no
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_nm_interface='BSD nm'
lt_cv_objdir=.libs
lt_cv_path_LD=/bin/ld
lt_cv_path_NM='/bin/nm -B'
lt_cv_path_mainfest_tool=no
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_pic='-fPIC -DPIC'
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=yes
lt_cv_prog_gnu_ld=yes
lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
lt_cv_shlibpath_overrides_runpath=no
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[	 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[	 ][	 ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/  {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/  {"\1", (void *) \&\1},/p'\'''
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/  {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/  {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/  {"lib\1", (void *) \&\1},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
lt_cv_sys_global_symbol_to_import=
lt_cv_sys_max_cmd_len=1572864
lt_cv_to_host_file_cmd=func_convert_file_noop
lt_cv_to_tool_file_cmd=func_convert_file_noop
lt_cv_truncate_bin='/bin/dd bs=4096 count=1'
pkg_cv_CURL_CFLAGS=
pkg_cv_CURL_LIBS='-lcurl '
pkg_cv_LIBARCHIVE_CFLAGS=
pkg_cv_LIBARCHIVE_LIBS='-larchive '
pkg_cv_OPENSSL_CFLAGS=
pkg_cv_OPENSSL_LIBS='-lssl -lcrypto '

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} /home/friesen/gitlab/opkg-0.3.6/conf/missing aclocal-1.16'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='$${TAR-tar}'
AM_BACKSLASH='\'
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='0'
AM_V='$(V)'
AR='ar'
AUTOCONF='${SHELL} /home/friesen/gitlab/opkg-0.3.6/conf/missing autoconf'
AUTOHEADER='${SHELL} /home/friesen/gitlab/opkg-0.3.6/conf/missing autoheader'
AUTOMAKE='${SHELL} /home/friesen/gitlab/opkg-0.3.6/conf/missing automake-1.16'
AWK='gawk'
BIGENDIAN_CFLAGS=''
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2'
CLEAN_DATE='December 2018'
CPP='gcc -E'
CPPFLAGS=''
CURL_CFLAGS=''
CURL_LIBS='-lcurl '
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
DLLTOOL='false'
DSYMUTIL=''
DUMPBIN=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
EXEEXT=''
FGREP='/bin/grep -F'
GPGERR_CFLAGS=''
GPGERR_CONFIG='/bin/gpg-error-config'
GPGERR_LIBS='-lgpg-error'
GPGME_CFLAGS=''
GPGME_CONFIG='/bin/gpgme-config'
GPGME_LIBS='-lgpgme -lassuan -lgpg-error'
GREP='/bin/grep'
HAVE_BZIP2_FALSE=''
HAVE_BZIP2_TRUE='#'
HAVE_CURL_FALSE='#'
HAVE_CURL_TRUE=''
HAVE_GPGME_FALSE='#'
HAVE_GPGME_TRUE=''
HAVE_LIBOPKG_API_FALSE=''
HAVE_LIBOPKG_API_TRUE='#'
HAVE_OPENSSL_FALSE=''
HAVE_OPENSSL_TRUE='#'
HAVE_PATHFINDER_FALSE=''
HAVE_PATHFINDER_TRUE='#'
HAVE_SHA256_FALSE=''
HAVE_SHA256_TRUE='#'
HAVE_SOLVER_INTERNAL_FALSE='#'
HAVE_SOLVER_INTERNAL_TRUE=''
HAVE_SOLVER_LIBSOLV_FALSE=''
HAVE_SOLVER_LIBSOLV_TRUE='#'
HAVE_XZ_FALSE='#'
HAVE_XZ_TRUE=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
LD='/bin/ld -m elf_x86_64'
LDFLAGS=''
LIBARCHIVE_CFLAGS=''
LIBARCHIVE_LIBS='-larchive '
LIBOBJS=''
LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIPO=''
LN_S='ln -s'
LTLIBOBJS=''
LT_SYS_LIBRARY_PATH=''
MAKEINFO='${SHELL} /home/friesen/gitlab/opkg-0.3.6/conf/missing makeinfo'
MANIFEST_TOOL=':'
MKDIR_P='/bin/mkdir -p'
NM='/bin/nm -B'
NMEDIT=''
OBJDUMP='objdump'
OBJEXT='o'
OPENSSL_CFLAGS=''
OPENSSL_LIBS='-lssl -lcrypto '
OTOOL64=''
OTOOL=''
PACKAGE='opkg'
PACKAGE_BUGREPORT=''
PACKAGE_NAME='opkg'
PACKAGE_STRING='opkg 0.3.6'
PACKAGE_TARNAME='opkg'
PACKAGE_URL=''
PACKAGE_VERSION='0.3.6'
PATHFINDER_CFLAGS=''
PATHFINDER_LIBS=''
PATH_SEPARATOR=':'
PKG_CONFIG='/bin/pkg-config'
PKG_CONFIG_LIBDIR=''
PKG_CONFIG_PATH=''
RANLIB='ranlib'
SED='/bin/sed'
SET_MAKE=''
SHELL='/bin/sh'
SOLVER_CFLAGS=''
SOLVER_LIBS=''
STATIC_LIBOPKG_FALSE=''
STATIC_LIBOPKG_TRUE='#'
STRIP='strip'
VERSION='0.3.6'
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_DUMPBIN=''
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE='#'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__nodep='_no'
am__quote=''
am__tar='$${TAR-tar} chof - "$$tardir"'
am__untar='$${TAR-tar} xf -'
bindir='${exec_prefix}/bin'
build='x86_64-pc-linux-gnu'
build_alias=''
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='pc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host='x86_64-pc-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='pc'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /home/friesen/gitlab/opkg-0.3.6/conf/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='$(MKDIR_P)'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr/local'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''

## ----------- ##
## confdefs.h. ##
## ----------- ##

/* confdefs.h */
#define PACKAGE_NAME "opkg"
#define PACKAGE_TARNAME "opkg"
#define PACKAGE_VERSION "0.3.6"
#define PACKAGE_STRING "opkg 0.3.6"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_URL ""
#define PACKAGE "opkg"
#define VERSION "0.3.6"
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define __EXTENSIONS__ 1
#define _ALL_SOURCE 1
#define _GNU_SOURCE 1
#define _POSIX_PTHREAD_SEMANTICS 1
#define _TANDEM_SOURCE 1
#define HAVE_DLFCN_H 1
#define LT_OBJDIR ".libs/"
#define HAVE_XZ 1
#define HAVE_CURL 1
#define HAVE_CURL 1
#define HAVE_SSLCURL 1
#define HAVE_SOLVER_INTERNAL 1
#define HAVE_GPGME 1
#define HAVE_DIRENT_H 1
#define STDC_HEADERS 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_ERRNO_H 1
#define HAVE_FCNTL_H 1
#define HAVE_MEMORY_H 1
#define HAVE_REGEX_H 1
#define HAVE_STDDEF_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UTIME_H 1
#define HAVE_STRUCT_STAT_ST_RDEV 1
#define HAVE_UNISTD_H 1
#define HAVE_CHOWN 1
#define HAVE_FORK 1
#define HAVE_VFORK 1
#define HAVE_WORKING_VFORK 1
#define HAVE_WORKING_FORK 1
#define RETSIGTYPE void
#define HAVE_UTIME_H 1
#define HAVE_UTIME_NULL 1
#define HAVE_VPRINTF 1
#define HAVE_MEMMOVE 1
#define HAVE_MEMSET 1
#define HAVE_MKDIR 1
#define HAVE_REGCOMP 1
#define HAVE_STRCHR 1
#define HAVE_STRCSPN 1
#define HAVE_STRDUP 1
#define HAVE_STRERROR 1
#define HAVE_STRNDUP 1
#define HAVE_STRRCHR 1
#define HAVE_STRSTR 1
#define HAVE_STRTOL 1
#define HAVE_STRTOUL 1
#define HAVE_SYSINFO 1
#define HAVE_UTIME 1
#define HAVE_GETOPT_LONG_ONLY 1

configure: exit 0

[-- Attachment #4: rootfs0.log --]
[-- Type: text/x-log, Size: 22871 bytes --]

execve("/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/opkg", ["/home/friesen/gitlab/quantumx-ma"..., "-f", "/home/friesen/rootfs/opkg.conf", "-o", "/home/friesen/rootfs/rootfs/", "install", "rootfs_1.0.0_armhf.ipk"], 0x7ffd7a7c0a88 /* 50 vars */) = 0
brk(NULL)                               = 0x55a0291f9000
arch_prctl(0x3001 /* ARCH_??? */, 0x7ffd2707e2b0) = -1 EINVAL (Invalid argument)
readlink("/proc/self/exe", "/home/friesen/gitlab/quantumx-ma"..., 4096) = 94
access("/etc/ld.so.preload", R_OK)      = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/tls/x86_64/x86_64/libopkg.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/tls/x86_64/x86_64", 0x7ffd2707d4f0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/tls/x86_64/libopkg.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/tls/x86_64", 0x7ffd2707d4f0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/tls/x86_64/libopkg.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/tls/x86_64", 0x7ffd2707d4f0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/tls/libopkg.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/tls", 0x7ffd2707d4f0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/x86_64/x86_64/libopkg.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/x86_64/x86_64", 0x7ffd2707d4f0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/x86_64/libopkg.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/x86_64", 0x7ffd2707d4f0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/x86_64/libopkg.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/x86_64", 0x7ffd2707d4f0) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/libopkg.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\247\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=856664, ...}) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0d552a3000
mmap(NULL, 198544, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f0d55272000
mmap(0x7f0d5527b000, 102400, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x9000) = 0x7f0d5527b000
mmap(0x7f0d55294000, 49152, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x22000) = 0x7f0d55294000
mmap(0x7f0d552a0000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2d000) = 0x7f0d552a0000
close(4)                                = 0
openat(AT_FDCWD, "/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/libarchive.so.13", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\34\1\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=3330720, ...}) = 0
mmap(NULL, 665456, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f0d551cf000
mmap(0x7f0d551df000, 438272, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x10000) = 0x7f0d551df000
mmap(0x7f0d5524a000, 143360, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x7b000) = 0x7f0d5524a000
mmap(0x7f0d5526d000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x9d000) = 0x7f0d5526d000
mmap(0x7f0d55271000, 1904, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f0d55271000
close(4)                                = 0
openat(AT_FDCWD, "/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=215038, ...}) = 0
mmap(NULL, 215038, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7f0d5519a000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000C\2\0\0\0\0\0"..., 832) = 832
lseek(4, 792, SEEK_SET)                 = 792
read(4, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\201\336\t\36\251c\324\233E\371SoK\5H\334"..., 68) = 68
fstat(4, {st_mode=S_IFREG|0755, st_size=2136840, ...}) = 0
lseek(4, 792, SEEK_SET)                 = 792
read(4, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\201\336\t\36\251c\324\233E\371SoK\5H\334"..., 68) = 68
lseek(4, 864, SEEK_SET)                 = 864
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 1848896, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f0d54fd6000
mprotect(0x7f0d54ff8000, 1671168, PROT_NONE) = 0
mmap(0x7f0d54ff8000, 1355776, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x22000) = 0x7f0d54ff8000
mmap(0x7f0d55143000, 311296, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x16d000) = 0x7f0d55143000
mmap(0x7f0d55190000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1b9000) = 0x7f0d55190000
mmap(0x7f0d55196000, 13888, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f0d55196000
close(4)                                = 0
openat(AT_FDCWD, "/home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/../lib/libz.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3602\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=121488, ...}) = 0
mmap(NULL, 115080, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f0d54fb9000
mprotect(0x7f0d54fbc000, 98304, PROT_NONE) = 0
mmap(0x7f0d54fbc000, 69632, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3000) = 0x7f0d54fbc000
mmap(0x7f0d54fcd000, 24576, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x14000) = 0x7f0d54fcd000
mmap(0x7f0d54fd4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1a000) = 0x7f0d54fd4000
close(4)                                = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0d54fb7000
arch_prctl(ARCH_SET_FS, 0x7f0d54fb7b80) = 0
mprotect(0x7f0d55190000, 16384, PROT_READ) = 0
mprotect(0x7f0d54fd4000, 4096, PROT_READ) = 0
mprotect(0x7f0d5526d000, 12288, PROT_READ) = 0
mprotect(0x7f0d552a0000, 4096, PROT_READ) = 0
mprotect(0x55a028908000, 4096, PROT_READ) = 0
mprotect(0x7f0d552ce000, 4096, PROT_READ) = 0
munmap(0x7f0d5519a000, 215038)          = 0
brk(NULL)                               = 0x55a0291f9000
brk(0x55a02921a000)                     = 0x55a02921a000
stat("/home/friesen/rootfs/opkg.conf", {st_mode=S_IFREG|0644, st_size=284, ...}) = 0
openat(AT_FDCWD, "/home/friesen/rootfs/opkg.conf", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=284, ...}) = 0
read(4, "option force_postinstall 1\n#\n# /"..., 4096) = 284
brk(0x55a02923b000)                     = 0x55a02923b000
read(4, "", 4096)                       = 0
close(4)                                = 0
lstat("/home/friesen/rootfs/rootfs///var/run", 0x7ffd2707e040) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs///var/run", 0x7ffd2707e020) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs///var", 0x7ffd2707df50) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs", 0x7ffd2707de80) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
mkdir("/home/friesen/rootfs/rootfs", 0777) = 0
chmod("/home/friesen/rootfs/rootfs", 0755) = 0
mkdir("/home/friesen/rootfs/rootfs///var", 0777) = 0
chmod("/home/friesen/rootfs/rootfs///var", 0755) = 0
mkdir("/home/friesen/rootfs/rootfs///var/run", 0777) = 0
chmod("/home/friesen/rootfs/rootfs///var/run", 0755) = 0
creat("/home/friesen/rootfs/rootfs///var/run/opkg.lock", 0640) = 4
fcntl(4, F_SETLK, {l_type=F_WRLCK, l_whence=SEEK_CUR, l_start=0, l_len=0}) = 0
getpid()                                = 30087
mkdir("/tmp/opkg-7L6c1r", 0700)         = 0
stat("/home/friesen/rootfs/rootfs///var/cache/opkg", 0x7ffd2707e020) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs///var/cache", 0x7ffd2707df50) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs///var", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
mkdir("/home/friesen/rootfs/rootfs///var/cache", 0777) = 0
chmod("/home/friesen/rootfs/rootfs///var/cache", 0755) = 0
mkdir("/home/friesen/rootfs/rootfs///var/cache/opkg", 0777) = 0
chmod("/home/friesen/rootfs/rootfs///var/cache/opkg", 0755) = 0
stat("/home/friesen/rootfs/rootfs//", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/friesen/rootfs/rootfs////var/lib/opkg/info", 0x7ffd2707dfd0) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs////var/lib/opkg", 0x7ffd2707df00) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs////var/lib", 0x7ffd2707de30) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs////var", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
mkdir("/home/friesen/rootfs/rootfs////var/lib", 0777) = 0
chmod("/home/friesen/rootfs/rootfs////var/lib", 0755) = 0
mkdir("/home/friesen/rootfs/rootfs////var/lib/opkg", 0777) = 0
chmod("/home/friesen/rootfs/rootfs////var/lib/opkg", 0755) = 0
mkdir("/home/friesen/rootfs/rootfs////var/lib/opkg/info", 0777) = 0
chmod("/home/friesen/rootfs/rootfs////var/lib/opkg/info", 0755) = 0
stat("/home/friesen/rootfs/rootfs////var/lib/opkg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs///var/lib/opkg/lists/willi", 0x7ffd2707e0f0) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs////var/lib/opkg/status", 0x7ffd2707e170) = -1 ENOENT (No such file or directory)
rt_sigaction(SIGINT, {sa_handler=0x7f0d5527e500, sa_mask=[INT], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f0d5500de00}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
lstat("rootfs_1.0.0_armhf.ipk", {st_mode=S_IFREG|0644, st_size=9876, ...}) = 0
getpid()                                = 30087
openat(AT_FDCWD, "/tmp/opkg-7L6c1r/rootfs_1.0.0_armhf.ipk.control.ab8llm", O_RDWR|O_CREAT|O_EXCL, 0600) = 5
fcntl(5, F_GETFL)                       = 0x8002 (flags O_RDWR|O_LARGEFILE)
openat(AT_FDCWD, "rootfs_1.0.0_armhf.ipk", O_RDONLY|O_CLOEXEC) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fstat(6, {st_mode=S_IFREG|0644, st_size=9876, ...}) = 0
read(6, "!<arch>\ndebian-binary/  0       "..., 65536) = 9876
brk(0x55a029260000)                     = 0x55a029260000
fstat(5, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
close(6)                                = 0
brk(0x55a029248000)                     = 0x55a029248000
write(5, "Package:\trootfs\nPriority:\toption"..., 230) = 230
lseek(5, 0, SEEK_SET)                   = 0
read(5, "Package:\trootfs\nPriority:\toption"..., 4096) = 230
read(5, "", 4096)                       = 0
close(5)                                = 0
unlink("/tmp/opkg-7L6c1r/rootfs_1.0.0_armhf.ipk.control.ab8llm") = 0
fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 14), ...}) = 0
write(1, "Installing rootfs (1.0.0) on roo"..., 35) = 35
statfs("/home/friesen/rootfs/rootfs//", {f_type=EXT2_SUPER_MAGIC, f_bsize=4096, f_blocks=246094897, f_bfree=18954993, f_bavail=6448340, f_files=62513152, f_ffree=33390800, f_fsid={val=[2306127409, 2651081008]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_RELATIME}) = 0
getpid()                                = 30087
mkdir("/tmp/opkg-7L6c1r/rootfs-LYxGFg", 0700) = 0
openat(AT_FDCWD, "rootfs_1.0.0_armhf.ipk", O_RDONLY|O_CLOEXEC) = 5
fcntl(5, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fstat(5, {st_mode=S_IFREG|0644, st_size=9876, ...}) = 0
read(5, "!<arch>\ndebian-binary/  0       "..., 65536) = 9876
brk(0x55a029270000)                     = 0x55a029270000
umask(000)                              = 022
umask(022)                              = 000
geteuid()                               = 1000
umask(000)                              = 022
umask(022)                              = 000
openat(AT_FDCWD, "/tmp/opkg-7L6c1r/rootfs-LYxGFg/control", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0644) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
write(6, "Package:\trootfs\nPriority:\toption"..., 230) = 230
close(6)                                = 0
brk(0x55a029260000)                     = 0x55a029260000
close(5)                                = 0
brk(0x55a029248000)                     = 0x55a029248000
lstat("/tmp/opkg-7L6c1r/rootfs-LYxGFg/conffiles", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
getpid()                                = 30087
openat(AT_FDCWD, "/tmp/opkg-7L6c1r/rootfs.list.sH88Za", O_RDWR|O_CREAT|O_EXCL, 0600) = 5
fcntl(5, F_GETFL)                       = 0x8002 (flags O_RDWR|O_LARGEFILE)
openat(AT_FDCWD, "rootfs_1.0.0_armhf.ipk", O_RDONLY|O_CLOEXEC) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fstat(6, {st_mode=S_IFREG|0644, st_size=9876, ...}) = 0
read(6, "!<arch>\ndebian-binary/  0       "..., 65536) = 9876
brk(0x55a029270000)                     = 0x55a029270000
fstat(5, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
brk(0x55a029260000)                     = 0x55a029260000
close(6)                                = 0
brk(0x55a029248000)                     = 0x55a029248000
write(5, "./\t040755\n./proc/\t040555\n./mnt/\t"..., 694) = 694
lseek(5, 0, SEEK_SET)                   = 0
read(5, "./\t040755\n./proc/\t040555\n./mnt/\t"..., 4096) = 694
read(5, "", 4096)                       = 0
close(5)                                = 0
unlink("/tmp/opkg-7L6c1r/rootfs.list.sH88Za") = 0
rt_sigprocmask(SIG_BLOCK, [INT], [], 8) = 0
lstat("/tmp/opkg-7L6c1r/rootfs-LYxGFg/preinst", 0x7ffd2707ddb0) = -1 ENOENT (No such file or directory)
getpid()                                = 30087
openat(AT_FDCWD, "/tmp/opkg-7L6c1r/rootfs.list.zB0Mk5", O_RDWR|O_CREAT|O_EXCL, 0600) = 5
fcntl(5, F_GETFL)                       = 0x8002 (flags O_RDWR|O_LARGEFILE)
openat(AT_FDCWD, "rootfs_1.0.0_armhf.ipk", O_RDONLY|O_CLOEXEC) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fstat(6, {st_mode=S_IFREG|0644, st_size=9876, ...}) = 0
read(6, "!<arch>\ndebian-binary/  0       "..., 65536) = 9876
brk(0x55a029270000)                     = 0x55a029270000
fstat(5, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
brk(0x55a029260000)                     = 0x55a029260000
close(6)                                = 0
brk(0x55a029248000)                     = 0x55a029248000
write(5, "./\t040755\n./proc/\t040555\n./mnt/\t"..., 694) = 694
lseek(5, 0, SEEK_SET)                   = 0
read(5, "./\t040755\n./proc/\t040555\n./mnt/\t"..., 4096) = 694
read(5, "", 4096)                       = 0
close(5)                                = 0
unlink("/tmp/opkg-7L6c1r/rootfs.list.zB0Mk5") = 0
lstat("/home/friesen/rootfs/rootfs/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs//proc", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//mnt", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//sys", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//etc", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//etc/profile", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//etc/resolv.conf", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//etc/hostname", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//etc/group", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//etc/issue", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//etc/passwd", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//etc/shadow", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//etc/nsswitch.conf", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//etc/mtab", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//etc/services", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//etc/hosts", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//etc/profile.environment", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//etc/fstab", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//etc/protocols", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//run", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//root", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//dev", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//dev/zero", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//dev/console", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//dev/null", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//home", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//tmp", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//media", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//var", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs//var", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs//var/lock", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//var/run", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs//var/run", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs//var/log", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//var/tmp", 0x7ffd2707de20) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs//var/cache", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs//var/cache", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
write(1, "To remove package debris, try `o"..., 52) = 52
write(1, "To re-attempt the install, try `"..., 54) = 54
rt_sigprocmask(SIG_UNBLOCK, [INT], [INT], 8) = 0
getpid()                                = 30087
mkdir("/tmp/opkg-7L6c1r/opkg-intercept-4ftPFZ", 0700) = 0
openat(AT_FDCWD, "/tmp/opkg-7L6c1r/opkg-intercept-4ftPFZ", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 5
fstat(5, {st_mode=S_IFDIR|0700, st_size=40, ...}) = 0
getdents64(5, /* 2 entries */, 32768)   = 48
getdents64(5, /* 0 entries */, 32768)   = 0
close(5)                                = 0
openat(AT_FDCWD, "/tmp/opkg-7L6c1r/opkg-intercept-4ftPFZ", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 5
fstat(5, {st_mode=S_IFDIR|0700, st_size=40, ...}) = 0
fchdir(5)                               = 0
getdents64(5, /* 2 entries */, 32768)   = 48
getdents64(5, /* 0 entries */, 32768)   = 0
chdir("..")                             = 0
rmdir("/tmp/opkg-7L6c1r/opkg-intercept-4ftPFZ") = 0
close(5)                                = 0
openat(AT_FDCWD, "/home/friesen/rootfs/rootfs////var/lib/opkg/status", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
write(5, "Package: rootfs\nVersion: 1.0.0\nS"..., 108) = 108
close(5)                                = 0
openat(AT_FDCWD, "/tmp/opkg-7L6c1r", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 5
fstat(5, {st_mode=S_IFDIR|0700, st_size=60, ...}) = 0
fchdir(5)                               = 0
getdents64(5, /* 3 entries */, 32768)   = 88
lstat("rootfs-LYxGFg", {st_mode=S_IFDIR|0700, st_size=60, ...}) = 0
openat(AT_FDCWD, "rootfs-LYxGFg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 6
fstat(6, {st_mode=S_IFDIR|0700, st_size=60, ...}) = 0
fchdir(6)                               = 0
getdents64(6, /* 3 entries */, 32768)   = 80
lstat("control", {st_mode=S_IFREG|0644, st_size=230, ...}) = 0
unlink("control")                       = 0
getdents64(6, /* 0 entries */, 32768)   = 0
chdir("..")                             = 0
rmdir("rootfs-LYxGFg")                  = 0
close(6)                                = 0
getdents64(5, /* 0 entries */, 32768)   = 0
chdir("..")                             = 0
rmdir("/tmp/opkg-7L6c1r")               = 0
close(5)                                = 0
brk(0x55a02923c000)                     = 0x55a02923c000
fcntl(4, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_CUR, l_start=0, l_len=0}) = 0
close(4)                                = 0
lstat("/home/friesen/rootfs/rootfs///var/run/opkg.lock", {st_mode=S_IFREG|0640, st_size=0, ...}) = 0
unlink("/home/friesen/rootfs/rootfs///var/run/opkg.lock") = 0
write(2, "Collected errors:\n", 18)     = 18
write(2, " * check_data_file_clashes: Pack"..., 142) = 142
write(2, " * opkg_solver_install: Cannot i"..., 55) = 55
exit_group(-1)                          = ?
+++ exited with 255 +++

[-- Attachment #5: rootfs.log --]
[-- Type: text/x-log, Size: 68740 bytes --]

execve("/usr/local/bin/opkg", ["opkg", "-f", "/home/friesen/rootfs/opkg.conf", "-o", "/home/friesen/rootfs/rootfs0/", "install", "rootfs_1.0.0_armhf.ipk"], 0x7fff71c36c18 /* 50 vars */) = 0
brk(NULL)                               = 0x55a484b8f000
arch_prctl(0x3001 /* ARCH_??? */, 0x7ffdc16d71d0) = -1 EINVAL (Invalid argument)
access("/etc/ld.so.preload", R_OK)      = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=215038, ...}) = 0
mmap(NULL, 215038, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7f724482e000
close(4)                                = 0
openat(AT_FDCWD, "/usr/local/lib/libopkg.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\271\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=946888, ...}) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f724482c000
mmap(NULL, 215544, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f72447f7000
mprotect(0x7f7244801000, 163840, PROT_NONE) = 0
mmap(0x7f7244801000, 110592, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xa000) = 0x7f7244801000
mmap(0x7f724481c000, 49152, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x25000) = 0x7f724481c000
mmap(0x7f7244829000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x31000) = 0x7f7244829000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libarchive.so.13", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0  \1\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=722640, ...}) = 0
mmap(NULL, 727216, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f7244745000
mmap(0x7f7244757000, 479232, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x12000) = 0x7f7244757000
mmap(0x7f72447cc000, 155648, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x87000) = 0x7f72447cc000
mmap(0x7f72447f2000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xac000) = 0x7f72447f2000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libcurl.so.4", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \300\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=571640, ...}) = 0
mmap(NULL, 574888, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f72446b8000
mprotect(0x7f72446c4000, 512000, PROT_NONE) = 0
mmap(0x7f72446c4000, 397312, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xc000) = 0x7f72446c4000
mmap(0x7f7244725000, 110592, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x6d000) = 0x7f7244725000
mmap(0x7f7244741000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x88000) = 0x7f7244741000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libgpgme.so.11", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 p\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=293528, ...}) = 0
mmap(NULL, 296072, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f724466f000
mmap(0x7f7244676000, 188416, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x7000) = 0x7f7244676000
mmap(0x7f72446a4000, 69632, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x35000) = 0x7f72446a4000
mmap(0x7f72446b5000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x45000) = 0x7f72446b5000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libassuan.so.0", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3601\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=75688, ...}) = 0
mmap(NULL, 2171232, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f724445c000
mprotect(0x7f724446d000, 2097152, PROT_NONE) = 0
mmap(0x7f724466d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x11000) = 0x7f724466d000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libgpg-error.so.0", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`=\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=129016, ...}) = 0
mmap(NULL, 2224736, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f724423c000
mprotect(0x7f724425b000, 2093056, PROT_NONE) = 0
mmap(0x7f724445a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1e000) = 0x7f724445a000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libssl.so.1.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \320\1\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=585328, ...}) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f724423a000
mmap(NULL, 588152, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f72441aa000
mprotect(0x7f72441c7000, 417792, PROT_NONE) = 0
mmap(0x7f72441c7000, 311296, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1d000) = 0x7f72441c7000
mmap(0x7f7244213000, 102400, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x69000) = 0x7f7244213000
mmap(0x7f724422d000, 53248, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x82000) = 0x7f724422d000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libcrypto.so.1.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0`\7\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=2941576, ...}) = 0
mmap(NULL, 2957160, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f7243ed8000
mmap(0x7f7243f4d000, 1699840, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x75000) = 0x7f7243f4d000
mmap(0x7f72440ec000, 577536, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x214000) = 0x7f72440ec000
mmap(0x7f7244179000, 188416, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2a0000) = 0x7f7244179000
mmap(0x7f72441a7000, 12136, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f72441a7000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000C\2\0\0\0\0\0"..., 832) = 832
lseek(4, 792, SEEK_SET)                 = 792
read(4, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\201\336\t\36\251c\324\233E\371SoK\5H\334"..., 68) = 68
fstat(4, {st_mode=S_IFREG|0755, st_size=2136840, ...}) = 0
lseek(4, 792, SEEK_SET)                 = 792
read(4, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\201\336\t\36\251c\324\233E\371SoK\5H\334"..., 68) = 68
lseek(4, 864, SEEK_SET)                 = 864
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 1848896, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f7243d14000
mprotect(0x7f7243d36000, 1671168, PROT_NONE) = 0
mmap(0x7f7243d36000, 1355776, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x22000) = 0x7f7243d36000
mmap(0x7f7243e81000, 311296, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x16d000) = 0x7f7243e81000
mmap(0x7f7243ece000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1b9000) = 0x7f7243ece000
mmap(0x7f7243ed4000, 13888, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f7243ed4000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libacl.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`\30\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=30504, ...}) = 0
mmap(NULL, 2125984, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f7243b0c000
mprotect(0x7f7243b13000, 2093056, PROT_NONE) = 0
mmap(0x7f7243d12000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x6000) = 0x7f7243d12000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libexpat.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 @\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=239280, ...}) = 0
mmap(NULL, 241680, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f7243ad0000
mprotect(0x7f7243ad4000, 217088, PROT_NONE) = 0
mmap(0x7f7243ad4000, 131072, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4000) = 0x7f7243ad4000
mmap(0x7f7243af4000, 81920, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x24000) = 0x7f7243af4000
mmap(0x7f7243b09000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x38000) = 0x7f7243b09000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/liblzma.so.5", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300,\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=153352, ...}) = 0
mmap(NULL, 2248720, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f72438aa000
mprotect(0x7f72438cf000, 2093056, PROT_NONE) = 0
mmap(0x7f7243ace000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x24000) = 0x7f7243ace000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libzstd.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 P\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=616136, ...}) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f72438a8000
mmap(NULL, 618560, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f7243810000
mmap(0x7f7243815000, 528384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x5000) = 0x7f7243815000
mmap(0x7f7243896000, 65536, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x86000) = 0x7f7243896000
mmap(0x7f72438a6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x95000) = 0x7f72438a6000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/liblz4.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0  \0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=120512, ...}) = 0
mmap(NULL, 122896, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f72437f1000
mmap(0x7f72437f3000, 98304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f72437f3000
mmap(0x7f724380b000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1a000) = 0x7f724380b000
mmap(0x7f724380e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1c000) = 0x7f724380e000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libbz2.so.1.0", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0  \0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=74552, ...}) = 0
mmap(NULL, 76872, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f72437de000
mmap(0x7f72437e0000, 53248, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f72437e0000
mmap(0x7f72437ed000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xf000) = 0x7f72437ed000
mmap(0x7f72437ef000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x10000) = 0x7f72437ef000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320!\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=91912, ...}) = 0
mmap(NULL, 2187280, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f72435c7000
mprotect(0x7f72435dd000, 2093056, PROT_NONE) = 0
mmap(0x7f72437dc000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x15000) = 0x7f72437dc000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libnghttp2.so.14", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 P\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=157472, ...}) = 0
mmap(NULL, 159856, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f724359f000
mmap(0x7f72435a4000, 77824, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x5000) = 0x7f72435a4000
mmap(0x7f72435b7000, 49152, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x18000) = 0x7f72435b7000
mmap(0x7f72435c3000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x23000) = 0x7f72435c3000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libidn2.so.0", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\24\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=116408, ...}) = 0
mmap(NULL, 2211864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f7243382000
mprotect(0x7f724339e000, 2093056, PROT_NONE) = 0
mmap(0x7f724359d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1b000) = 0x7f724359d000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libssh2.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 `\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=190560, ...}) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f7243380000
mmap(NULL, 192952, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f7243350000
mprotect(0x7f7243356000, 163840, PROT_NONE) = 0
mmap(0x7f7243356000, 122880, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x6000) = 0x7f7243356000
mmap(0x7f7243374000, 36864, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x24000) = 0x7f7243374000
mmap(0x7f724337e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2d000) = 0x7f724337e000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libpsl.so.5", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\21\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=63088, ...}) = 0
mmap(NULL, 2158696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f7243140000
mprotect(0x7f724314f000, 2093056, PROT_NONE) = 0
mmap(0x7f724334e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xe000) = 0x7f724334e000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libgssapi_krb5.so.2", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\260\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0644, st_size=319376, ...}) = 0
mmap(NULL, 2415328, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f7242ef2000
mprotect(0x7f7242f3d000, 2097152, PROT_NONE) = 0
mmap(0x7f724313d000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4b000) = 0x7f724313d000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libkrb5.so.3", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0006\2\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0644, st_size=952608, ...}) = 0
mmap(NULL, 3048768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f7242c09000
mprotect(0x7f7242ce1000, 2097152, PROT_NONE) = 0
mmap(0x7f7242ee1000, 69632, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xd8000) = 0x7f7242ee1000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libk5crypto.so.3", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200G\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0644, st_size=206640, ...}) = 0
mmap(NULL, 2305816, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f72429d6000
mprotect(0x7f7242a06000, 2097152, PROT_NONE) = 0
mmap(0x7f7242c06000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x30000) = 0x7f7242c06000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libcom_err.so.2", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0  \0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=18104, ...}) = 0
mmap(NULL, 20648, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f72429d0000
mmap(0x7f72429d2000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f72429d2000
mmap(0x7f72429d3000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3000) = 0x7f72429d3000
mmap(0x7f72429d4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3000) = 0x7f72429d4000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340f\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=155408, ...}) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f72429ce000
lseek(4, 808, SEEK_SET)                 = 808
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 131528, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f72429ad000
mmap(0x7f72429b3000, 61440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x6000) = 0x7f72429b3000
mmap(0x7f72429c2000, 24576, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x15000) = 0x7f72429c2000
mmap(0x7f72429c8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1a000) = 0x7f72429c8000
mmap(0x7f72429ca000, 12744, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f72429ca000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \20\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=14240, ...}) = 0
mmap(NULL, 16528, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f72429a8000
mmap(0x7f72429a9000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1000) = 0x7f72429a9000
mmap(0x7f72429aa000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f72429aa000
mmap(0x7f72429ab000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f72429ab000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libattr.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\21\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=18112, ...}) = 0
mmap(NULL, 2113560, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f72427a3000
mprotect(0x7f72427a7000, 2093056, PROT_NONE) = 0
mmap(0x7f72429a6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3000) = 0x7f72429a6000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libunistring.so.2", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\17\1\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=1570608, ...}) = 0
mmap(NULL, 3668232, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f7242423000
mprotect(0x7f724259f000, 2093056, PROT_NONE) = 0
mmap(0x7f724279e000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x17b000) = 0x7f724279e000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libkrb5support.so.0", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320*\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0644, st_size=51168, ...}) = 0
mmap(NULL, 2146952, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f7242216000
mprotect(0x7f7242221000, 2097152, PROT_NONE) = 0
mmap(0x7f7242421000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xb000) = 0x7f7242421000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libkeyutils.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0  \0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=22208, ...}) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f7242214000
mmap(NULL, 24592, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f724220d000
mmap(0x7f724220f000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f724220f000
mmap(0x7f7242211000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4000) = 0x7f7242211000
mmap(0x7f7242212000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4000) = 0x7f7242212000
close(4)                                = 0
openat(AT_FDCWD, "/usr/lib/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 @\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=88200, ...}) = 0
mmap(NULL, 100512, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f72421f4000
mprotect(0x7f72421f8000, 69632, PROT_NONE) = 0
mmap(0x7f72421f8000, 49152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4000) = 0x7f72421f8000
mmap(0x7f7242204000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x10000) = 0x7f7242204000
mmap(0x7f7242209000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x14000) = 0x7f7242209000
mmap(0x7f724220b000, 6304, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f724220b000
close(4)                                = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f72421f2000
mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f72421ef000
arch_prctl(ARCH_SET_FS, 0x7f72421ef740) = 0
mprotect(0x7f7243ece000, 16384, PROT_READ) = 0
mprotect(0x7f7242209000, 4096, PROT_READ) = 0
mprotect(0x7f7242212000, 4096, PROT_READ) = 0
mprotect(0x7f72429ab000, 4096, PROT_READ) = 0
mprotect(0x7f7242421000, 4096, PROT_READ) = 0
mprotect(0x7f724279e000, 16384, PROT_READ) = 0
mprotect(0x7f72429a6000, 4096, PROT_READ) = 0
mprotect(0x7f72429c8000, 4096, PROT_READ) = 0
mprotect(0x7f72429d4000, 4096, PROT_READ) = 0
mprotect(0x7f7242c06000, 8192, PROT_READ) = 0
mprotect(0x7f7242ee1000, 61440, PROT_READ) = 0
mprotect(0x7f724313d000, 8192, PROT_READ) = 0
mprotect(0x7f724359d000, 4096, PROT_READ) = 0
mprotect(0x7f724334e000, 4096, PROT_READ) = 0
mprotect(0x7f7244179000, 180224, PROT_READ) = 0
mprotect(0x7f724422d000, 36864, PROT_READ) = 0
mprotect(0x7f72437dc000, 4096, PROT_READ) = 0
mprotect(0x7f724337e000, 4096, PROT_READ) = 0
mprotect(0x7f72435c3000, 12288, PROT_READ) = 0
mprotect(0x7f72437ef000, 4096, PROT_READ) = 0
mprotect(0x7f724380e000, 4096, PROT_READ) = 0
mprotect(0x7f72438a6000, 4096, PROT_READ) = 0
mprotect(0x7f7243ace000, 4096, PROT_READ) = 0
mprotect(0x7f7243b09000, 8192, PROT_READ) = 0
mprotect(0x7f7243d12000, 4096, PROT_READ) = 0
mprotect(0x7f724445a000, 4096, PROT_READ) = 0
mprotect(0x7f724466d000, 4096, PROT_READ) = 0
mprotect(0x7f72446b5000, 4096, PROT_READ) = 0
mprotect(0x7f7244741000, 12288, PROT_READ) = 0
mprotect(0x7f72447f2000, 16384, PROT_READ) = 0
mprotect(0x7f7244829000, 4096, PROT_READ) = 0
mprotect(0x55a484a22000, 4096, PROT_READ) = 0
mprotect(0x7f724488c000, 4096, PROT_READ) = 0
munmap(0x7f724482e000, 215038)          = 0
set_tid_address(0x7f72421efa10)         = 29968
set_robust_list(0x7f72421efa20, 24)     = 0
rt_sigaction(SIGRTMIN, {sa_handler=0x7f72429b3130, sa_mask=[], sa_flags=SA_RESTORER|SA_SIGINFO, sa_restorer=0x7f72429bf3c0}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {sa_handler=0x7f72429b31d0, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART|SA_SIGINFO, sa_restorer=0x7f72429bf3c0}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
brk(NULL)                               = 0x55a484b8f000
brk(0x55a484bb0000)                     = 0x55a484bb0000
stat("/home/friesen/rootfs/opkg.conf", {st_mode=S_IFREG|0644, st_size=284, ...}) = 0
openat(AT_FDCWD, "/home/friesen/rootfs/opkg.conf", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=284, ...}) = 0
read(4, "option force_postinstall 1\n#\n# /"..., 4096) = 284
brk(0x55a484bd1000)                     = 0x55a484bd1000
read(4, "", 4096)                       = 0
close(4)                                = 0
lstat("/home/friesen/rootfs/rootfs0///usr/local/var/run", 0x7ffdc16d6f60) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs0///usr/local/var/run", 0x7ffdc16d6f40) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs0///usr/local/var", 0x7ffdc16d6e70) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs0///usr/local", 0x7ffdc16d6da0) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs0///usr", 0x7ffdc16d6cd0) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs0", 0x7ffdc16d6c00) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
mkdir("/home/friesen/rootfs/rootfs0", 0777) = 0
chmod("/home/friesen/rootfs/rootfs0", 0755) = 0
mkdir("/home/friesen/rootfs/rootfs0///usr", 0777) = 0
chmod("/home/friesen/rootfs/rootfs0///usr", 0755) = 0
mkdir("/home/friesen/rootfs/rootfs0///usr/local", 0777) = 0
chmod("/home/friesen/rootfs/rootfs0///usr/local", 0755) = 0
mkdir("/home/friesen/rootfs/rootfs0///usr/local/var", 0777) = 0
chmod("/home/friesen/rootfs/rootfs0///usr/local/var", 0755) = 0
mkdir("/home/friesen/rootfs/rootfs0///usr/local/var/run", 0777) = 0
chmod("/home/friesen/rootfs/rootfs0///usr/local/var/run", 0755) = 0
creat("/home/friesen/rootfs/rootfs0///usr/local/var/run/opkg.lock", 0640) = 4
fcntl(4, F_SETLK, {l_type=F_WRLCK, l_whence=SEEK_CUR, l_start=0, l_len=0}) = 0
getpid()                                = 29968
mkdir("/tmp/opkg-edMel5", 0700)         = 0
stat("/home/friesen/rootfs/rootfs0///usr/local/var/cache/opkg", 0x7ffdc16d6f40) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs0///usr/local/var/cache", 0x7ffdc16d6e70) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs0///usr/local/var", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
mkdir("/home/friesen/rootfs/rootfs0///usr/local/var/cache", 0777) = 0
chmod("/home/friesen/rootfs/rootfs0///usr/local/var/cache", 0755) = 0
mkdir("/home/friesen/rootfs/rootfs0///usr/local/var/cache/opkg", 0777) = 0
chmod("/home/friesen/rootfs/rootfs0///usr/local/var/cache/opkg", 0755) = 0
stat("/home/friesen/rootfs/rootfs0//", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/friesen/rootfs/rootfs0////usr/local/var/lib/opkg/info", 0x7ffdc16d6ef0) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs0////usr/local/var/lib/opkg", 0x7ffdc16d6e20) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs0////usr/local/var/lib", 0x7ffdc16d6d50) = -1 ENOENT (No such file or directory)
stat("/home/friesen/rootfs/rootfs0////usr/local/var", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
mkdir("/home/friesen/rootfs/rootfs0////usr/local/var/lib", 0777) = 0
chmod("/home/friesen/rootfs/rootfs0////usr/local/var/lib", 0755) = 0
mkdir("/home/friesen/rootfs/rootfs0////usr/local/var/lib/opkg", 0777) = 0
chmod("/home/friesen/rootfs/rootfs0////usr/local/var/lib/opkg", 0755) = 0
mkdir("/home/friesen/rootfs/rootfs0////usr/local/var/lib/opkg/info", 0777) = 0
chmod("/home/friesen/rootfs/rootfs0////usr/local/var/lib/opkg/info", 0755) = 0
stat("/home/friesen/rootfs/rootfs0////usr/local/var/lib/opkg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0///usr/local/var/lib/opkg/lists/willi", 0x7ffdc16d7010) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0////usr/local/var/lib/opkg/status", 0x7ffdc16d7090) = -1 ENOENT (No such file or directory)
rt_sigaction(SIGINT, {sa_handler=0x7f72448046e0, sa_mask=[INT], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f7243d4be00}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
lstat("rootfs_1.0.0_armhf.ipk", {st_mode=S_IFREG|0644, st_size=9876, ...}) = 0
getpid()                                = 29968
openat(AT_FDCWD, "/tmp/opkg-edMel5/rootfs_1.0.0_armhf.ipk.control.9Op70a", O_RDWR|O_CREAT|O_EXCL, 0600) = 5
fcntl(5, F_GETFL)                       = 0x8002 (flags O_RDWR|O_LARGEFILE)
openat(AT_FDCWD, "rootfs_1.0.0_armhf.ipk", O_RDONLY|O_CLOEXEC) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fstat(6, {st_mode=S_IFREG|0644, st_size=9876, ...}) = 0
read(6, "!<arch>\ndebian-binary/  0       "..., 65536) = 9876
brk(0x55a484bf6000)                     = 0x55a484bf6000
fstat(5, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
close(6)                                = 0
brk(0x55a484bde000)                     = 0x55a484bde000
write(5, "Package:\trootfs\nPriority:\toption"..., 230) = 230
lseek(5, 0, SEEK_SET)                   = 0
read(5, "Package:\trootfs\nPriority:\toption"..., 4096) = 230
read(5, "", 4096)                       = 0
close(5)                                = 0
unlink("/tmp/opkg-edMel5/rootfs_1.0.0_armhf.ipk.control.9Op70a") = 0
fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 14), ...}) = 0
write(1, "Installing rootfs (1.0.0) on roo"..., 35) = 35
statfs("/home/friesen/rootfs/rootfs0//", {f_type=EXT2_SUPER_MAGIC, f_bsize=4096, f_blocks=246094897, f_bfree=18955049, f_bavail=6448396, f_files=62513152, f_ffree=33390842, f_fsid={val=[2306127409, 2651081008]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_RELATIME}) = 0
getpid()                                = 29968
mkdir("/tmp/opkg-edMel5/rootfs-vot8Gg", 0700) = 0
openat(AT_FDCWD, "rootfs_1.0.0_armhf.ipk", O_RDONLY|O_CLOEXEC) = 5
fcntl(5, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fstat(5, {st_mode=S_IFREG|0644, st_size=9876, ...}) = 0
read(5, "!<arch>\ndebian-binary/  0       "..., 65536) = 9876
brk(0x55a484c06000)                     = 0x55a484c06000
umask(000)                              = 022
umask(022)                              = 000
geteuid()                               = 1000
umask(000)                              = 022
umask(022)                              = 000
openat(AT_FDCWD, "/tmp/opkg-edMel5/rootfs-vot8Gg/control", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0644) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
write(6, "Package:\trootfs\nPriority:\toption"..., 230) = 230
close(6)                                = 0
brk(0x55a484bf6000)                     = 0x55a484bf6000
close(5)                                = 0
brk(0x55a484bde000)                     = 0x55a484bde000
lstat("/tmp/opkg-edMel5/rootfs-vot8Gg/conffiles", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
getpid()                                = 29968
openat(AT_FDCWD, "/tmp/opkg-edMel5/rootfs.list.kEQfnm", O_RDWR|O_CREAT|O_EXCL, 0600) = 5
fcntl(5, F_GETFL)                       = 0x8002 (flags O_RDWR|O_LARGEFILE)
openat(AT_FDCWD, "rootfs_1.0.0_armhf.ipk", O_RDONLY|O_CLOEXEC) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fstat(6, {st_mode=S_IFREG|0644, st_size=9876, ...}) = 0
read(6, "!<arch>\ndebian-binary/  0       "..., 65536) = 9876
brk(0x55a484c06000)                     = 0x55a484c06000
fstat(5, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
brk(0x55a484bf6000)                     = 0x55a484bf6000
close(6)                                = 0
brk(0x55a484bde000)                     = 0x55a484bde000
write(5, "./\t040755\n./proc/\t040555\n./mnt/\t"..., 694) = 694
lseek(5, 0, SEEK_SET)                   = 0
read(5, "./\t040755\n./proc/\t040555\n./mnt/\t"..., 4096) = 694
read(5, "", 4096)                       = 0
close(5)                                = 0
unlink("/tmp/opkg-edMel5/rootfs.list.kEQfnm") = 0
rt_sigprocmask(SIG_BLOCK, [INT], [], 8) = 0
lstat("/tmp/opkg-edMel5/rootfs-vot8Gg/preinst", 0x7ffdc16d6cd0) = -1 ENOENT (No such file or directory)
getpid()                                = 29968
openat(AT_FDCWD, "/tmp/opkg-edMel5/rootfs.list.sVKw3r", O_RDWR|O_CREAT|O_EXCL, 0600) = 5
fcntl(5, F_GETFL)                       = 0x8002 (flags O_RDWR|O_LARGEFILE)
openat(AT_FDCWD, "rootfs_1.0.0_armhf.ipk", O_RDONLY|O_CLOEXEC) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fstat(6, {st_mode=S_IFREG|0644, st_size=9876, ...}) = 0
read(6, "!<arch>\ndebian-binary/  0       "..., 65536) = 9876
brk(0x55a484c06000)                     = 0x55a484c06000
fstat(5, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
brk(0x55a484bf6000)                     = 0x55a484bf6000
close(6)                                = 0
brk(0x55a484bde000)                     = 0x55a484bde000
write(5, "./\t040755\n./proc/\t040555\n./mnt/\t"..., 694) = 694
lseek(5, 0, SEEK_SET)                   = 0
read(5, "./\t040755\n./proc/\t040555\n./mnt/\t"..., 4096) = 694
read(5, "", 4096)                       = 0
close(5)                                = 0
unlink("/tmp/opkg-edMel5/rootfs.list.sVKw3r") = 0
lstat("/home/friesen/rootfs/rootfs0/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//proc", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//mnt", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//sys", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//etc", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//etc/profile", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//etc/resolv.conf", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//etc/hostname", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//etc/group", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//etc/issue", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//etc/passwd", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//etc/shadow", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//etc/nsswitch.conf", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//etc/mtab", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//etc/services", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//etc/hosts", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//etc/profile.environment", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//etc/fstab", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//etc/protocols", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//run", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//root", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//dev", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//dev/zero", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//dev/console", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//dev/null", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//home", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//tmp", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//media", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//var", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//var/lock", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//var/run", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//var/log", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//var/tmp", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//var/cache", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "rootfs_1.0.0_armhf.ipk", O_RDONLY|O_CLOEXEC) = 5
fcntl(5, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fstat(5, {st_mode=S_IFREG|0644, st_size=9876, ...}) = 0
read(5, "!<arch>\ndebian-binary/  0       "..., 65536) = 9876
brk(0x55a484c06000)                     = 0x55a484c06000
umask(000)                              = 022
umask(022)                              = 000
geteuid()                               = 1000
umask(000)                              = 022
umask(022)                              = 000
openat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/usr/local/var/lib/opkg/info/rootfs.control", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0644) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
write(6, "Package:\trootfs\nPriority:\toption"..., 230) = 230
close(6)                                = 0
brk(0x55a484bf6000)                     = 0x55a484bf6000
close(5)                                = 0
brk(0x55a484bde000)                     = 0x55a484bde000
openat(AT_FDCWD, "rootfs_1.0.0_armhf.ipk", O_RDONLY|O_CLOEXEC) = 5
fcntl(5, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fstat(5, {st_mode=S_IFREG|0644, st_size=9876, ...}) = 0
read(5, "!<arch>\ndebian-binary/  0       "..., 65536) = 9876
brk(0x55a484c06000)                     = 0x55a484c06000
umask(000)                              = 022
umask(022)                              = 000
geteuid()                               = 1000
umask(000)                              = 022
umask(022)                              = 000
mkdir("/home/friesen/rootfs/rootfs0/proc", 0755) = 0
socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 6
connect(6, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(6)                                = 0
socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 6
connect(6, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(6)                                = 0
openat(AT_FDCWD, "/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=334, ...}) = 0
read(6, "# Name Service Switch configurat"..., 4096) = 334
read(6, "", 4096)                       = 0
close(6)                                = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=215038, ...}) = 0
mmap(NULL, 215038, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7f724482e000
close(6)                                = 0
openat(AT_FDCWD, "/usr/lib/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 0\0\0\0\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=55200, ...}) = 0
mmap(NULL, 83416, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7f72421da000
mmap(0x7f72421dd000, 28672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x3000) = 0x7f72421dd000
mmap(0x7f72421e4000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0xa000) = 0x7f72421e4000
mmap(0x7f72421e7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0xc000) = 0x7f72421e7000
mmap(0x7f72421e9000, 21976, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f72421e9000
close(6)                                = 0
mprotect(0x7f72421e7000, 4096, PROT_READ) = 0
munmap(0x7f724482e000, 215038)          = 0
openat(AT_FDCWD, "/etc/passwd", O_RDONLY|O_CLOEXEC) = 6
lseek(6, 0, SEEK_CUR)                   = 0
fstat(6, {st_mode=S_IFREG|0644, st_size=1571, ...}) = 0
read(6, "root:x:0:0::/root:/bin/bash\nbin:"..., 4096) = 1571
close(6)                                = 0
socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 6
connect(6, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(6)                                = 0
socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 6
connect(6, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(6)                                = 0
openat(AT_FDCWD, "/etc/group", O_RDONLY|O_CLOEXEC) = 6
lseek(6, 0, SEEK_CUR)                   = 0
fstat(6, {st_mode=S_IFREG|0644, st_size=921, ...}) = 0
read(6, "root:x:0:root\nsys:x:3:bin\nmem:x:"..., 4096) = 921
close(6)                                = 0
write(1, "Warning when extracting archive "..., 93) = 93
umask(000)                              = 022
umask(022)                              = 000
mkdir("/home/friesen/rootfs/rootfs0/mnt", 0755) = 0
write(1, "Warning when extracting archive "..., 92) = 92
umask(000)                              = 022
umask(022)                              = 000
mkdir("/home/friesen/rootfs/rootfs0/sys", 0755) = 0
write(1, "Warning when extracting archive "..., 92) = 92
umask(000)                              = 022
umask(022)                              = 000
mkdir("/home/friesen/rootfs/rootfs0/etc", 0755) = 0
write(1, "Warning when extracting archive "..., 92) = 92
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/etc/profile") = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/etc/profile", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0644) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
write(6, "# /etc/profile - config for init"..., 605) = 605
utimensat(6, NULL, [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], 0) = 0
close(6)                                = 0
write(1, "Warning when extracting archive "..., 99) = 99
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/etc/resolv.conf") = -1 ENOENT (No such file or directory)
symlink("/usr/lib/systemd/resolv.conf", "/home/friesen/rootfs/rootfs0/etc/resolv.conf") = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/etc/resolv.conf", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
write(1, "Warning when extracting archive "..., 103) = 103
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/etc/hostname") = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/etc/hostname", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0644) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
write(6, "QuantumXsoc\n", 12)           = 12
utimensat(6, NULL, [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], 0) = 0
close(6)                                = 0
write(1, "Warning when extracting archive "..., 100) = 100
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/etc/group") = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/etc/group", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0644) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
write(6, "root:x:0:\nhbmuser:x:0:\ndaemon:x:"..., 377) = 377
utimensat(6, NULL, [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], 0) = 0
close(6)                                = 0
write(1, "Warning when extracting archive "..., 97) = 97
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/etc/issue") = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/etc/issue", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0644) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
write(6, " _   _ ____  __  __ \n| | | | __ "..., 537) = 537
utimensat(6, NULL, [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], 0) = 0
close(6)                                = 0
write(1, "Warning when extracting archive "..., 97) = 97
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/etc/passwd") = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/etc/passwd", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0644) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
write(6, "root:x:0:0:root:/home:/bin/sh\nhb"..., 709) = 709
utimensat(6, NULL, [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], 0) = 0
close(6)                                = 0
write(1, "Warning when extracting archive "..., 98) = 98
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/etc/shadow") = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/etc/shadow", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0640) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
write(6, "root:lHOrQgB5jYMkk:17567:0:99999"..., 149) = 149
utimensat(6, NULL, [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], 0) = 0
close(6)                                = 0
write(1, "Warning when extracting archive "..., 98) = 98
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/etc/nsswitch.conf") = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/etc/nsswitch.conf", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0644) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
write(6, "#\n# /etc/nsswitch.conf\n#\n\npasswd"..., 288) = 288
utimensat(6, NULL, [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], 0) = 0
close(6)                                = 0
write(1, "Warning when extracting archive "..., 105) = 105
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/etc/mtab") = -1 ENOENT (No such file or directory)
symlink("/proc/self/mounts", "/home/friesen/rootfs/rootfs0/etc/mtab") = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/etc/mtab", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
write(1, "Warning when extracting archive "..., 96) = 96
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/etc/services") = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/etc/services", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0644) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
write(6, "# Network services, Internet sty"..., 18465) = 18465
utimensat(6, NULL, [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], 0) = 0
close(6)                                = 0
write(1, "Warning when extracting archive "..., 100) = 100
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/etc/hosts") = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/etc/hosts", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0644) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
write(6, "127.0.0.1\tlocalhost\n", 20)  = 20
utimensat(6, NULL, [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], 0) = 0
close(6)                                = 0
write(1, "Warning when extracting archive "..., 97) = 97
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/etc/profile.environment") = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/etc/profile.environment", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0644) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
write(6, "# /etc/profile.environment - con"..., 210) = 210
utimensat(6, NULL, [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], 0) = 0
close(6)                                = 0
write(1, "Warning when extracting archive "..., 111) = 111
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/etc/fstab") = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/etc/fstab", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0644) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
write(6, "#\n# /etc/fstab\n#\n\n# special file"..., 607) = 607
utimensat(6, NULL, [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], 0) = 0
close(6)                                = 0
write(1, "Warning when extracting archive "..., 97) = 97
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/etc/protocols") = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/etc/protocols", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0644) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
write(6, "ip\t\t0\tIP              # internet"..., 178) = 178
utimensat(6, NULL, [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], 0) = 0
close(6)                                = 0
write(1, "Warning when extracting archive "..., 101) = 101
umask(000)                              = 022
umask(022)                              = 000
mkdir("/home/friesen/rootfs/rootfs0/run", 0755) = 0
write(1, "Warning when extracting archive "..., 92) = 92
umask(000)                              = 022
umask(022)                              = 000
mkdir("/home/friesen/rootfs/rootfs0/root", 0700) = 0
write(1, "Warning when extracting archive "..., 93) = 93
umask(000)                              = 022
umask(022)                              = 000
mkdir("/home/friesen/rootfs/rootfs0/dev", 0755) = 0
write(1, "Warning when extracting archive "..., 92) = 92
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/dev/zero") = -1 ENOENT (No such file or directory)
mknod("/home/friesen/rootfs/rootfs0/dev/zero", S_IFCHR|0644, makedev(1, 5)) = -1 EPERM (Operation not permitted)
write(1, "Warning when extracting archive "..., 133) = 133
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/dev/console") = -1 ENOENT (No such file or directory)
mknod("/home/friesen/rootfs/rootfs0/dev/console", S_IFCHR|0600, makedev(5, 1)) = -1 EPERM (Operation not permitted)
write(1, "Warning when extracting archive "..., 139) = 139
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/dev/null") = -1 ENOENT (No such file or directory)
mknod("/home/friesen/rootfs/rootfs0/dev/null", S_IFCHR|0644, makedev(1, 3)) = -1 EPERM (Operation not permitted)
write(1, "Warning when extracting archive "..., 133) = 133
umask(000)                              = 022
umask(022)                              = 000
mkdir("/home/friesen/rootfs/rootfs0/home", 0755) = 0
write(1, "Warning when extracting archive "..., 93) = 93
umask(000)                              = 022
umask(022)                              = 000
mkdir("/home/friesen/rootfs/rootfs0/tmp", 0755) = 0
write(1, "Warning when extracting archive "..., 92) = 92
umask(000)                              = 022
umask(022)                              = 000
mkdir("/home/friesen/rootfs/rootfs0/media", 0755) = 0
write(1, "Warning when extracting archive "..., 94) = 94
umask(000)                              = 022
umask(022)                              = 000
mkdir("/home/friesen/rootfs/rootfs0/var", 0755) = 0
write(1, "Warning when extracting archive "..., 92) = 92
umask(000)                              = 022
umask(022)                              = 000
mkdir("/home/friesen/rootfs/rootfs0/var/lock", 0755) = 0
write(1, "Warning when extracting archive "..., 97) = 97
umask(000)                              = 022
umask(022)                              = 000
unlink("/home/friesen/rootfs/rootfs0/var/run") = -1 ENOENT (No such file or directory)
symlink("../run", "/home/friesen/rootfs/rootfs0/var/run") = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0/var/run", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
write(1, "Warning when extracting archive "..., 95) = 95
umask(000)                              = 022
umask(022)                              = 000
mkdir("/home/friesen/rootfs/rootfs0/var/log", 0755) = 0
write(1, "Warning when extracting archive "..., 96) = 96
umask(000)                              = 022
umask(022)                              = 000
mkdir("/home/friesen/rootfs/rootfs0/var/tmp", 0755) = 0
write(1, "Warning when extracting archive "..., 96) = 96
umask(000)                              = 022
umask(022)                              = 000
mkdir("/home/friesen/rootfs/rootfs0/var/cache", 0755) = 0
write(1, "Warning when extracting archive "..., 98) = 98
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0//var/tmp/", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
chmod("/home/friesen/rootfs/rootfs0//var/tmp/", 040755) = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0//var/log/", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
chmod("/home/friesen/rootfs/rootfs0//var/log/", 040755) = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0//var/lock/", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
chmod("/home/friesen/rootfs/rootfs0//var/lock/", 040755) = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0//var/cache/", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
chmod("/home/friesen/rootfs/rootfs0//var/cache/", 040755) = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0//var/", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
chmod("/home/friesen/rootfs/rootfs0//var/", 040755) = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0//tmp/", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
chmod("/home/friesen/rootfs/rootfs0//tmp/", 041777) = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0//sys/", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
chmod("/home/friesen/rootfs/rootfs0//sys/", 040755) = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0//run/", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
chmod("/home/friesen/rootfs/rootfs0//run/", 040755) = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0//root/", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
chmod("/home/friesen/rootfs/rootfs0//root/", 040700) = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0//proc/", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
chmod("/home/friesen/rootfs/rootfs0//proc/", 040555) = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0//mnt/", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
chmod("/home/friesen/rootfs/rootfs0//mnt/", 040755) = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0//media/", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
chmod("/home/friesen/rootfs/rootfs0//media/", 040777) = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0//home/", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
chmod("/home/friesen/rootfs/rootfs0//home/", 042775) = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0//etc/", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
chmod("/home/friesen/rootfs/rootfs0//etc/", 040755) = 0
utimensat(AT_FDCWD, "/home/friesen/rootfs/rootfs0//dev/", [{tv_sec=1543927091, tv_nsec=0} /* 2018-12-04T13:38:11+0100 */, {tv_sec=1541030400, tv_nsec=0} /* 2018-11-01T01:00:00+0100 */], AT_SYMLINK_NOFOLLOW) = 0
chmod("/home/friesen/rootfs/rootfs0//dev/", 040755) = 0
brk(0x55a484bf6000)                     = 0x55a484bf6000
close(5)                                = 0
brk(0x55a484bde000)                     = 0x55a484bde000
openat(AT_FDCWD, "/home/friesen/rootfs/rootfs0////usr/local/var/lib/opkg/info/rootfs.list", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
write(5, "/var/\n/etc/resolv.conf\n/mnt/\n/et"..., 353) = 353
close(5)                                = 0
getpid()                                = 29968
openat(AT_FDCWD, "/tmp/opkg-edMel5/rootfs.list.G1IWLx", O_RDWR|O_CREAT|O_EXCL, 0600) = 5
fcntl(5, F_GETFL)                       = 0x8002 (flags O_RDWR|O_LARGEFILE)
openat(AT_FDCWD, "rootfs_1.0.0_armhf.ipk", O_RDONLY|O_CLOEXEC) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fstat(6, {st_mode=S_IFREG|0644, st_size=9876, ...}) = 0
read(6, "!<arch>\ndebian-binary/  0       "..., 65536) = 9876
brk(0x55a484c06000)                     = 0x55a484c06000
fstat(5, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
brk(0x55a484bf6000)                     = 0x55a484bf6000
close(6)                                = 0
brk(0x55a484bde000)                     = 0x55a484bde000
write(5, "./\t040755\n./proc/\t040555\n./mnt/\t"..., 694) = 694
lseek(5, 0, SEEK_SET)                   = 0
read(5, "./\t040755\n./proc/\t040555\n./mnt/\t"..., 4096) = 694
read(5, "", 4096)                       = 0
close(5)                                = 0
unlink("/tmp/opkg-edMel5/rootfs.list.G1IWLx") = 0
lstat("/home/friesen/rootfs/rootfs0/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//proc", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//proc", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//mnt", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//mnt", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//sys", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//sys", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/profile", {st_mode=S_IFREG|0644, st_size=605, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/profile", {st_mode=S_IFREG|0644, st_size=605, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/resolv.conf", {st_mode=S_IFLNK|0777, st_size=28, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/resolv.conf", {st_mode=S_IFLNK|0777, st_size=28, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/hostname", {st_mode=S_IFREG|0644, st_size=12, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/hostname", {st_mode=S_IFREG|0644, st_size=12, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/group", {st_mode=S_IFREG|0644, st_size=377, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/group", {st_mode=S_IFREG|0644, st_size=377, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/issue", {st_mode=S_IFREG|0644, st_size=537, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/issue", {st_mode=S_IFREG|0644, st_size=537, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/passwd", {st_mode=S_IFREG|0644, st_size=709, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/passwd", {st_mode=S_IFREG|0644, st_size=709, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/shadow", {st_mode=S_IFREG|0640, st_size=149, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/shadow", {st_mode=S_IFREG|0640, st_size=149, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/nsswitch.conf", {st_mode=S_IFREG|0644, st_size=288, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/nsswitch.conf", {st_mode=S_IFREG|0644, st_size=288, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/mtab", {st_mode=S_IFLNK|0777, st_size=17, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/mtab", {st_mode=S_IFLNK|0777, st_size=17, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/services", {st_mode=S_IFREG|0644, st_size=18465, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/services", {st_mode=S_IFREG|0644, st_size=18465, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/hosts", {st_mode=S_IFREG|0644, st_size=20, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/hosts", {st_mode=S_IFREG|0644, st_size=20, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/profile.environment", {st_mode=S_IFREG|0644, st_size=210, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/profile.environment", {st_mode=S_IFREG|0644, st_size=210, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/fstab", {st_mode=S_IFREG|0644, st_size=607, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/fstab", {st_mode=S_IFREG|0644, st_size=607, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/protocols", {st_mode=S_IFREG|0644, st_size=178, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//etc/protocols", {st_mode=S_IFREG|0644, st_size=178, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//run", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//run", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//root", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//root", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//dev", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//dev", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//dev/zero", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//dev/console", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//dev/null", 0x7ffdc16d6d40) = -1 ENOENT (No such file or directory)
lstat("/home/friesen/rootfs/rootfs0//home", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//home", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//media", {st_mode=S_IFDIR|0777, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//media", {st_mode=S_IFDIR|0777, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//var", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//var", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//var/lock", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//var/lock", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//var/run", {st_mode=S_IFLNK|0777, st_size=6, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//var/run", {st_mode=S_IFLNK|0777, st_size=6, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//var/log", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//var/log", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//var/tmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//var/tmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//var/cache", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/friesen/rootfs/rootfs0//var/cache", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
rt_sigprocmask(SIG_UNBLOCK, [INT], [INT], 8) = 0
getpid()                                = 29968
mkdir("/tmp/opkg-edMel5/opkg-intercept-00lSuD", 0700) = 0
write(1, "Configuring rootfs.\n", 20)   = 20
lstat("/home/friesen/rootfs/rootfs0////usr/local/var/lib/opkg/info/rootfs.postinst", 0x7ffdc16d6f40) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/tmp/opkg-edMel5/opkg-intercept-00lSuD", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 5
fstat(5, {st_mode=S_IFDIR|0700, st_size=40, ...}) = 0
getdents64(5, /* 2 entries */, 32768)   = 48
getdents64(5, /* 0 entries */, 32768)   = 0
close(5)                                = 0
openat(AT_FDCWD, "/tmp/opkg-edMel5/opkg-intercept-00lSuD", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 5
fstat(5, {st_mode=S_IFDIR|0700, st_size=40, ...}) = 0
fchdir(5)                               = 0
getdents64(5, /* 2 entries */, 32768)   = 48
getdents64(5, /* 0 entries */, 32768)   = 0
chdir("..")                             = 0
rmdir("/tmp/opkg-edMel5/opkg-intercept-00lSuD") = 0
close(5)                                = 0
openat(AT_FDCWD, "/home/friesen/rootfs/rootfs0////usr/local/var/lib/opkg/status", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
write(5, "Package: rootfs\nVersion: 1.0.0\nS"..., 132) = 132
close(5)                                = 0
openat(AT_FDCWD, "/tmp/opkg-edMel5", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 5
fstat(5, {st_mode=S_IFDIR|0700, st_size=60, ...}) = 0
fchdir(5)                               = 0
getdents64(5, /* 3 entries */, 32768)   = 88
lstat("rootfs-vot8Gg", {st_mode=S_IFDIR|0700, st_size=60, ...}) = 0
openat(AT_FDCWD, "rootfs-vot8Gg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 6
fstat(6, {st_mode=S_IFDIR|0700, st_size=60, ...}) = 0
fchdir(6)                               = 0
getdents64(6, /* 3 entries */, 32768)   = 80
lstat("control", {st_mode=S_IFREG|0644, st_size=230, ...}) = 0
unlink("control")                       = 0
getdents64(6, /* 0 entries */, 32768)   = 0
chdir("..")                             = 0
rmdir("rootfs-vot8Gg")                  = 0
close(6)                                = 0
getdents64(5, /* 0 entries */, 32768)   = 0
chdir("..")                             = 0
rmdir("/tmp/opkg-edMel5")               = 0
close(5)                                = 0
brk(0x55a484bd2000)                     = 0x55a484bd2000
fcntl(4, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_CUR, l_start=0, l_len=0}) = 0
close(4)                                = 0
lstat("/home/friesen/rootfs/rootfs0///usr/local/var/run/opkg.lock", {st_mode=S_IFREG|0640, st_size=0, ...}) = 0
unlink("/home/friesen/rootfs/rootfs0///usr/local/var/run/opkg.lock") = 0
exit_group(0)                           = ?
+++ exited with 0 +++

[-- Attachment #6: Type: text/plain, Size: 91 bytes --]

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] rootfs: package
  2018-12-04 12:47               ` Andreas Friesen
@ 2018-12-04 12:58                 ` Michael Olbrich
  2018-12-04 13:25                   ` Andreas Friesen
  0 siblings, 1 reply; 14+ messages in thread
From: Michael Olbrich @ 2018-12-04 12:58 UTC (permalink / raw)
  To: ptxdist

On Tue, Dec 04, 2018 at 01:47:45PM +0100, Andreas Friesen wrote:
> DESTDIR="/home/friesen/rootfs/rootfs0"  strace -orootfs.log  opkg -f
> "/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs0/" install
> rootfs_1.0.0_armhf.ipk
> ââ[$] <> cat rootfs.log| grep run
[...]
> mkdir("/home/friesen/rootfs/rootfs0///usr/local/var/run", 0777) = 0
> chmod("/home/friesen/rootfs/rootfs0///usr/local/var/run", 0755) = 0
> creat("/home/friesen/rootfs/rootfs0///usr/local/var/run/opkg.lock", 0640) =
> 4
[...]
> DESTDIR="/home/friesen/rootfs/rootfs" strace -orootfs0.log
>  /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/opkg
> -f "/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs/"
> install  rootfs_1.0.0_armhf.ipk
> ââ[$] <> cat rootfs0.log| grep run
[...]
> mkdir("/home/friesen/rootfs/rootfs///var/run", 0777) = 0
> chmod("/home/friesen/rootfs/rootfs///var/run", 0755) = 0
> creat("/home/friesen/rootfs/rootfs///var/run/opkg.lock", 0640) = 4

The opkg.conf template contains this:

option  lock_file /var/lock/opkg.lock

As a result, the lock file is created there and I don't see this error.
I'm guessing, that you have a custom opkg.conf without this entry.
You need to add it with a path outside of /var/run.

Michael

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

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] rootfs: package
  2018-12-04 12:58                 ` Michael Olbrich
@ 2018-12-04 13:25                   ` Andreas Friesen
  2018-12-04 13:39                     ` Michael Olbrich
  0 siblings, 1 reply; 14+ messages in thread
From: Andreas Friesen @ 2018-12-04 13:25 UTC (permalink / raw)
  To: ptxdist


[-- Attachment #1.1: Type: text/plain, Size: 2465 bytes --]

Also I extracted my opkg.conf from ptxdist after little hack in
/usr/local/lib/ptxdist-2018.11.0/scripts/lib/ptxd_make_image_prepare_work_dir.sh

ptxd_make_image_extract_xpkg_files() {
...
cat "${xpkg_conf}" > /tmp/opkg.conf &&
..
}


ââ[$] <> cat opkg.conf
option force_postinstall 1
#
# /etc/opkg/opkg.conf
#
src/gz willi http://willi.devel.hbm.com/clipx/soc-packages
dest root /
arch armhf 10
arch all 1
arch noarch 1
option check_signature 0
#option signature_ca_path /etc/ssl/certs
#option signature_ca_file /etc/ssl/certs/opkg.crt



Am Di., 4. Dez. 2018 um 13:58 Uhr schrieb Michael Olbrich <
m.olbrich@pengutronix.de>:

> On Tue, Dec 04, 2018 at 01:47:45PM +0100, Andreas Friesen wrote:
> > DESTDIR="/home/friesen/rootfs/rootfs0"  strace -orootfs.log  opkg -f
> > "/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs0/"
> install
> > rootfs_1.0.0_armhf.ipk
> > ââ[$] <> cat rootfs.log| grep run
> [...]
> > mkdir("/home/friesen/rootfs/rootfs0///usr/local/var/run", 0777) = 0
> > chmod("/home/friesen/rootfs/rootfs0///usr/local/var/run", 0755) = 0
> > creat("/home/friesen/rootfs/rootfs0///usr/local/var/run/opkg.lock",
> 0640) =
> > 4
> [...]
> > DESTDIR="/home/friesen/rootfs/rootfs" strace -orootfs0.log
> >
> /home/friesen/gitlab/quantumx-master/projects/ppc/ptx-multi/platform-soc/sysroot-host/bin/opkg
> > -f "/home/friesen/rootfs/opkg.conf" -o "/home/friesen/rootfs/rootfs/"
> > install  rootfs_1.0.0_armhf.ipk
> > ââ[$] <> cat rootfs0.log| grep run
> [...]
> > mkdir("/home/friesen/rootfs/rootfs///var/run", 0777) = 0
> > chmod("/home/friesen/rootfs/rootfs///var/run", 0755) = 0
> > creat("/home/friesen/rootfs/rootfs///var/run/opkg.lock", 0640) = 4
>
> The opkg.conf template contains this:
>
> option  lock_file /var/lock/opkg.lock
>
> As a result, the lock file is created there and I don't see this error.
> I'm guessing, that you have a custom opkg.conf without this entry.
> You need to add it with a path outside of /var/run.
>
> Michael
>
> --
> Pengutronix e.K.                           |                             |
> Industrial Linux Solutions                 | http://www.pengutronix.de/  |
> Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
> Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de

[-- Attachment #1.2: Type: text/html, Size: 3884 bytes --]

[-- Attachment #2: Type: text/plain, Size: 91 bytes --]

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] rootfs: package
  2018-12-04 13:25                   ` Andreas Friesen
@ 2018-12-04 13:39                     ` Michael Olbrich
  2018-12-05  6:32                       ` Andreas Friesen
  0 siblings, 1 reply; 14+ messages in thread
From: Michael Olbrich @ 2018-12-04 13:39 UTC (permalink / raw)
  To: ptxdist

On Tue, Dec 04, 2018 at 02:25:15PM +0100, Andreas Friesen wrote:
> Also I extracted my opkg.conf from ptxdist after little hack in
> /usr/local/lib/ptxdist-2018.11.0/scripts/lib/ptxd_make_image_prepare_work_dir.sh
> 
> ptxd_make_image_extract_xpkg_files() {
> ...
> cat "${xpkg_conf}" > /tmp/opkg.conf &&
> ..
> }
> 
> 
> ââ[$] <> cat opkg.conf
> option force_postinstall 1
> #
> # /etc/opkg/opkg.conf
> #
> src/gz willi http://willi.devel.hbm.com/clipx/soc-packages
> dest root /
> arch armhf 10
> arch all 1
> arch noarch 1
> option check_signature 0
> #option signature_ca_path /etc/ssl/certs
> #option signature_ca_file /etc/ssl/certs/opkg.crt

This is generated from projectroot/etc/opkg/opkg.conf. I expect you have
one in your BSP. You need to add the lock_file option there.

Michael

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

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] rootfs: package
  2018-12-04 13:39                     ` Michael Olbrich
@ 2018-12-05  6:32                       ` Andreas Friesen
  0 siblings, 0 replies; 14+ messages in thread
From: Andreas Friesen @ 2018-12-05  6:32 UTC (permalink / raw)
  To: ptxdist


[-- Attachment #1.1: Type: text/plain, Size: 1463 bytes --]

Great ! It's works now!
Many Thanks, Michael for support.




Am Di., 4. Dez. 2018 um 14:39 Uhr schrieb Michael Olbrich <
m.olbrich@pengutronix.de>:

> On Tue, Dec 04, 2018 at 02:25:15PM +0100, Andreas Friesen wrote:
> > Also I extracted my opkg.conf from ptxdist after little hack in
> >
> /usr/local/lib/ptxdist-2018.11.0/scripts/lib/ptxd_make_image_prepare_work_dir.sh
> >
> > ptxd_make_image_extract_xpkg_files() {
> > ...
> > cat "${xpkg_conf}" > /tmp/opkg.conf &&
> > ..
> > }
> >
> >
> > ââ[$] <> cat opkg.conf
> > option force_postinstall 1
> > #
> > # /etc/opkg/opkg.conf
> > #
> > src/gz willi http://willi.devel.hbm.com/clipx/soc-packages
> > dest root /
> > arch armhf 10
> > arch all 1
> > arch noarch 1
> > option check_signature 0
> > #option signature_ca_path /etc/ssl/certs
> > #option signature_ca_file /etc/ssl/certs/opkg.crt
>
> This is generated from projectroot/etc/opkg/opkg.conf. I expect you have
> one in your BSP. You need to add the lock_file option there.
>
> Michael
>
> --
> Pengutronix e.K.                           |                             |
> Industrial Linux Solutions                 | http://www.pengutronix.de/  |
> Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
> Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de

[-- Attachment #1.2: Type: text/html, Size: 2466 bytes --]

[-- Attachment #2: Type: text/plain, Size: 91 bytes --]

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

end of thread, other threads:[~2018-12-05  6:32 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-29  7:35 [ptxdist] rootfs: package Andreas Friesen
2018-12-03 22:38 ` Andreas Friesen
2018-12-04  7:50   ` Michael Olbrich
2018-12-04  9:40     ` Andreas Friesen
2018-12-04 10:40       ` Michael Olbrich
2018-12-04 11:47         ` Andreas Friesen
2018-12-04 11:53           ` Andreas Friesen
2018-12-04 11:58             ` Michael Olbrich
2018-12-04 12:47               ` Andreas Friesen
2018-12-04 12:58                 ` Michael Olbrich
2018-12-04 13:25                   ` Andreas Friesen
2018-12-04 13:39                     ` Michael Olbrich
2018-12-05  6:32                       ` Andreas Friesen
2018-12-04  7:49 ` Michael Olbrich

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