OpenDDS / meta-opendds

Open Embedded Layer for the OpenDDS package
Other
7 stars 4 forks source link

Updated to support Kirkstone branch #14

Closed plabanca closed 2 years ago

plabanca commented 2 years ago

Updated to support kirkstone. kirkstone by default disables network access for all recipe tasks except do_fetch, so enabled network access for do_configure to support configure script wget operations.

mitza-oci commented 2 years ago

Updated to support kirkstone. kirkstone by default disables network access for all recipe tasks except do_fetch, so enabled network access for do_configure to support configure script wget operations.

If you want fetch to be its own step (and not need to download during configure), you can get the ACE_TAO archive first and put it in place. Then the configure script will take this branch and skip downloading.

    if (-r $file) {
      print "Using ACE+TAO source package $file\n" if $opts{'verbose'};
    }
vermaete commented 2 years ago

Hi,

Yocto people changed it for people without Internet or air gapped networks.

You can check my fork how I solved it.

BTW: it would be great if this could be merged.