- 21 Nov, 2017 2 commits
-
-
Philippe Coval authored
To support fedora-24 for ARTIK7 Change-Id: I8d40700b8f19fcbc71cb3ad3235cda990290792d Origin: https://gerrit.iotivity.org/gerrit/#/c/23299/Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com>
-
Mats Wichmann authored
The shared libraries in the Linux build sometimes link with other shared libraries they don't actually use. It's "cleaner" if the dependencies are only real ones. Adding the linker flag only for shared library builds (SHLINKFLAGS) improves this situation, and leads to the changes documented in the referenced bug (IOT-2354). The scons scripts which build these libraries should presumably be examined, to stop them listing dependencies they don't use, but that is currently a separate topic. Change-Id: I0b55c2048af36a28ae26829aa934cfadc4665651 Bug: IOT-2354 Signed-off-by:
Mats Wichmann <mats@linux.com>
-
- 20 Nov, 2017 2 commits
-
-
George Nash authored
Maintaining only one copy is easier, and may have security benefits since the input to base64 decode is often untrusted input (e.g., a peer certificate). Comparing the implementation of base64 from mbedtls the output follows the rules specified in RFC 1521 for doing base64 encoding. As best I can tell IoTivity's implementation follows the rules specified in RFC 4648. The major difference is that RFC 1521 has a limit on line length of 76 characters. While RFC 4648 does not have the line length limitation and will typically encode the data as one long string. Originally there was a lot of concern that if the base64 encoded string were stored anywhere changing to the mbedtls implementation could cause backward compatibility problems. For that reason unit tests were added that encoded using IoTivity base64 and decoded using mbedtls as well as encoding using mbedtls and decoding base64. Both implementations were able to handle data encoded by the other implementation. JniSecureUtils::convertUUIDtoStr was removed after discovering it was not use anywhere in the code. Also there was no clear use case to convert a 128 bit UUID to a base64 string. Bug: https://jira.iotivity.org/browse/IOT-1375 Change-Id: If7f178ff550c5d529452593ed7998a082ec1fab3 Signed-off-by:
George Nash <george.nash@intel.com>
-
Philippe Coval authored
This was needed for fedora-24 for ARTIK7 Bug: https://jira.iotivity.org/browse/IOT-1745 Change-Id: I177a277a07a0684e58f5935b5785de50b3d78af1 Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com>
-
- 18 Nov, 2017 5 commits
-
-
Philippe Coval authored
Could be done in scons install too Bug: https://jira.iotivity.org/browse/IOT-524 Change-Id: I60f4684d17d260e1917fe5840b4eda626c196056 Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com>
-
Philippe Coval authored
This will be useful for creating snapshot versions ie: 1.3.0+99+1.3.1+RC5~B4DC0DE Bug: https://jira.iotivity.org/browse/IOT-1745 Change-Id: Ib95ee7c53cc226e411bacc03313ffd6829b7e7d1 Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com>
-
Philippe Coval authored
This was needed for fedora-24 for ARTIK7 Bug: https://jira.iotivity.org/browse/IOT-1745 Change-Id: I1dab992c31013170d2ec068e8ac05ef9c4d9c84a Origin: https://gerrit.iotivity.org/gerrit/#/c/23271/Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com>
-
Philippe Coval authored
This way we will find uninstalled files, and fix in scons. In longer term scons should do all needed steps, to avoid double maintenance. Bug: https://jira.iotivity.org/browse/IOT-524 Change-Id: Ie8f40e0727835821f623e31e785a7d1074038315 Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com> Origin: https://gerrit.iotivity.org/gerrit/#/c/21855/
-
Philippe Coval authored
It's part of resource, not service. Bug: https://jira.iotivity.org/browse/IOT-524 Origin: https://gerrit.iotivity.org/gerrit/#/c/23131/ Change-Id: I502591a8db1c48bc21d9dd0b768c46efb353b6c3 Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com> (cherry picked from commit 57f121d6)
-
- 17 Nov, 2017 1 commit
-
-
Philippe Coval authored
If built along -Wstrict-prototypes it will raise and error, this is the case on TizenRT. More patches to come to enable this flag by default. Bug: Bug:https://jira.iotivity.org/browse/IOT-2539 Change-Id: Id588411af8c625898d2f89288750d8bdb82603da Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com>
-
- 15 Nov, 2017 2 commits
-
-
Mats Wichmann authored
* The variable-substitution section in building the coap.h config file (for the "upstream" version) not working, repaired. * Move the coap.h comment down to where the work is done for easier reading. * Use "with" statement for file handling (conventions) * Clean up the glob handling to generate the file lists: use scons internal Glob. * Save the correct coap path into a construction var LIBCOAP_INC. Other scripts will later be modified to use this, but as of this patch it has no active effect. Along the way, found build script in plugins was using WITH_UNFORKED_LIBCOAP (which is never set in the environment) rather than WITH_UPSTREAM_LIBCOAP - this is adjusted. Change-Id: I0398b440c5318516578426253a653024f3277fe4 Signed-off-by:
Mats Wichmann <mats@linux.com>
-
Mats Wichmann authored
Problem: when Jenkins runs the unit_test configuration on Linux, it looks for files suffixed .xml in the top directory, but it does not know where they come from, and in a multi-stage run (as unit_test currently is), since the collection happens only at the end, there can be some confusion about which results apply to the "failure count". As a first stage in cleanup, to avoid programmer errors when calling run_tests, the filename for the valgrind run is now generated from the pathname of the test. Until further cleanup, the passed filename is ignored and just used as a boolean (that aspect was already documented - empty string meaning do not use valgrind). Whether or not valgrind runs happen was selected based on platform. An environment flag is added to allow it to be turned of for small-memory platforms, or for testing whether valgrind is adding problems (that is, if unit tests fail, can try again with valgrind disabled to help narrow down where the problem is). As a note, to combat the "overwrite" effect when unit_test builder runs non-secure followed by secure build+test, was attempting to separate those two builds by putting them in distinct paths, but apparently the path is computed other places than build_common/SConscript. android, darwin and tizen all found some existing instance of the current path style even after it was changed and so broke. So as of this commit, this topic is not addressed. Change-Id: I57213dce98a9a0f8ced3a18e82d0a51691b024bd Signed-off-by:
Mats Wichmann <mats@linux.com>
-
- 14 Nov, 2017 1 commit
-
-
Philippe Coval authored
The file from "out" dir will be also installed to system include path using scons install (to /usr/include/ on linux) Bug: https://jira.iotivity.org/browse/IOT-2599 Change-Id: Icddfb9354f47fd40ba998fe336b4963be7ade871 Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com> Origin: https://gerrit.iotivity.org/gerrit/#/c/21989/
-
- 13 Nov, 2017 1 commit
-
-
Philippe Coval authored
Remove direct pairing and pconfresource It was reintroduced by mistake in: https://gerrit.iotivity.org/gerrit/#/c/21193/ Change-Id: Ia71db37f0c2ecbf2d7a62a8363c0949a00000001 Credit-to: v.riznyk <v.riznyk@samsung.com> Bug: https://jira.iotivity.org/browse/IOT-2306Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com>
-
- 10 Nov, 2017 1 commit
-
-
Mats Wichmann authored
cherry-pick because this is causing problems for me. For gcc starting with 7, gcc -dumpversion returns a single (non dotted) number. This is actually an illegal version to distutils' version.StrictVersion, so use LooseVersion instead, where that is a legal number but the comparison still works fine. For Python 3.x, subprocess.check_output returns a byte string, which needs to be decoded before it can be passed to the version comparator function. Instead of bothering with the decoder, which is hard to get right so it works for both Py2 and Py3 case, call the new subprocess.getoutput() method, falling back to check_output if not available. Change-Id: I29e1f43f8fbde130103099be1972b574a23442cf Bug: https://jira.iotivity.org/browse/IOT-2862Signed-off-by:
Mats Wichmann <mats@linux.com> (cherry picked from commit 754d84d2)
-
- 09 Nov, 2017 1 commit
-
-
Dan Mihai authored
-
- 08 Nov, 2017 1 commit
-
-
Mats Wichmann authored
Currently, when the run_tests function is called twice from the the same scons script (that is, the script has more than one unit test binary to register), the GTEST_OUTPUT environment variable becomes malformed. This is because the string to add is added to a list instead of just being appended as a string. The result is that while all the test output binaries are expected to go to BUILD_DIR/test_out, in these cases they go deep down underneath that directory. Here are the unexpected paths in an unmodified testing run: out/linux/x86_64/debug/test_out/:xml: out/linux/x86_64/debug/test_out/:xml:/home out/linux/x86_64/debug/test_out/:xml:/home/mats out/linux/x86_64/debug/test_out/:xml:/home/mats/iotivity.work out/linux/x86_64/debug/test_out/:xml:/home/mats/iotivity.work/out out/linux/x86_64/debug/test_out/:xml:/home/mats/iotivity.work/out/linux out/linux/x86_64/debug/test_out/:xml:/home/mats/iotivity.work/out/linux/x86_64 out/linux/x86_64/debug/test_out/:xml:/home/mats/iotivity.work/out/linux/x86_64/debug out/linux/x86_64/debug/test_out/:xml:/home/mats/iotivity.work/out/linux/x86_64/debug/test_out out/linux/x86_64/debug/test_out/:xml:/home/mats/iotivity.work/out/linux/x86_64/debug/test_out/unittest.xml out/linux/x86_64/debug/test_out/:xml:/home/mats/iotivity.work/out/linux/x86_64/debug/test_out/stacktests.xml out/linux/x86_64/debug/test_out/:xml:/home/mats/iotivity.work/out/linux/x86_64/debug/test_out/cbortests.xml out/linux/x86_64/debug/test_out/:xml:/home/mats/iotivity.work/out/linux/x86_64/debug/test_out/provisiontests.xml The :xml: is intended as a tag used to signal gtest, it is never supposed to be part of the real filesystem path. Note fix was already proposed as part of https://gerrit.iotivity.org/gerrit/#/c/22275/ but since it's a distinct error with a very simple fix, wanted to get it pushed through by itself while that one is under consideration. Change-Id: I05c57d54034686a7c77c783eab758e7f501e86ea Signed-off-by:
Mats Wichmann <mats@linux.com>
-
- 07 Nov, 2017 1 commit
-
-
Ibrahim Esmat authored
If you are building for UWP, then you can't build and run a regular desktop program/exe. Therefore, needed tools like json2cbor will fail to run and the build will fail to generate the .dat files that are needed. - Change run.bat to build the win32 version of the security tool (resource/csdk/security/tool) which will be copied to the uwp output directory to use for the build. - Change the security tool SConscript file to check for this when building for UWP. Change-Id: I2d83cdf3d78cc73a9e31be2741251d533c1ae93a Signed-off-by:
Ibrahim Esmat <iesmat@microsoft.com>
-
- 06 Nov, 2017 1 commit
-
-
Sushil Yadav authored
Change-Id: I42ab6d08a64fa1a5b60f39384617f00160686afc Signed-off-by:
Sushil Yadav <sushil.ky@samsung.com>
-
- 05 Nov, 2017 1 commit
-
-
Mats Wichmann authored
This intends to pick up only three stray misplaced files from resource/ which were actually also being built in normal sequence in the expected places and added to their respective libraries there; thus the problem was a reference from elsewhere in the tree - which turned out to be the Zigbee wrapper. The files in question are oic_malloc.c, oic_string.c and logger.c. There are no executables built in this tree, only some libraries. In the original form these files are just built in to the libraries as follows: $ ar t out/linux/x86_64/debug/plugins/zigbee_wrapper/telegesis_wrapper/src/libtelegesis_wrapper.a oic_string.o logger.o twsocketlist.o telegesis_socket.o telegesis_wrapper.o $ ar t out/linux/x86_64/debug/plugins/zigbee_wrapper/src/libzigbee_wrapper.a oic_malloc.o logger.o zigbee_wrapper.o $ ar t out/linux/x86_64/debug/plugins/src/libplugin_interface.a logger.o pluginlist.o plugininterface.o Binaries should just get these interfaces by linking with libc_common (for oic_string and oic_malloc) and liblogger (for logger). The unit test here is the only binary built, and it doesn't seem to need either. Meanwhile, all the build scripts in plugins were cleaned up a bit. They now use the SCons #-at-start-of-string reference to refer to the top of the tree, instead of fetching saved src_dir and joining it to paths, and a bit of other cleanup also done. Bug: https://jira.iotivity.org/browse/IOT-1745 Change-Id: I01d95a757aea8e955fd5af4951e1ba3ad52228d3 Signed-off-by:
Mats Wichmann <mats@linux.com>
-
- 03 Nov, 2017 1 commit
-
-
Mats Wichmann authored
Provisions the current Ubuntu LTS release with a usable iotivity build environment. Also adds commented-out options to provision the other two current (non-LTS) Ubuntu releases, 17.04 and 17.10 Change-Id: Ia5cda2e77d00de65367a57c1faaf226558a5e7b6 Signed-off-by:
Mats Wichmann <mats@linux.com>
-
- 31 Oct, 2017 1 commit
-
-
George Nash authored
Relates-to: https://gerrit.iotivity.org/gerrit/#/c/22977/ https://gerrit.iotivity.org/gerrit/#/c/22811/ https://gerrit.iotivity.org/gerrit/#/c/22953/ https://gerrit.iotivity.org/gerrit/#/c/22975/ https://gerrit.iotivity.org/gerrit/#/c/22979/ https://gerrit.iotivity.org/gerrit/#/c/22033/ https://gerrit.iotivity.org/gerrit/#/c/22951/ https://gerrit.iotivity.org/gerrit/#/c/22973/ https://gerrit.iotivity.org/gerrit/#/c/22929/ https://gerrit.iotivity.org/gerrit/#/c/22965/ https://gerrit.iotivity.org/gerrit/#/c/22949/ https://gerrit.iotivity.org/gerrit/#/c/22923/ https://gerrit.iotivity.org/gerrit/#/c/22881/ https://gerrit.iotivity.org/gerrit/#/c/22935/ https://gerrit.iotivity.org/gerrit/#/c/22933/ https://gerrit.iotivity.org/gerrit/#/c/22921/ https://gerrit.iotivity.org/gerrit/#/c/22883/ https://gerrit.iotivity.org/gerrit/#/c/22925/ https://gerrit.iotivity.org/gerrit/#/c/22619/ https://gerrit.iotivity.org/gerrit/#/c/22879/ https://gerrit.iotivity.org/gerrit/#/c/22915/ https://gerrit.iotivity.org/gerrit/#/c/22895/ https://gerrit.iotivity.org/gerrit/#/c/22905/ https://gerrit.iotivity.org/gerrit/#/c/22891/ https://gerrit.iotivity.org/gerrit/#/c/22889/ https://gerrit.iotivity.org/gerrit/#/c/22893/ https://gerrit.iotivity.org/gerrit/#/c/22899/ https://gerrit.iotivity.org/gerrit/#/c/22779/ https://gerrit.iotivity.org/gerrit/#/c/22657/ https://gerrit.iotivity.org/gerrit/#/c/22903/ https://gerrit.iotivity.org/gerrit/#/c/22867/ https://gerrit.iotivity.org/gerrit/#/c/22875/ https://gerrit.iotivity.org/gerrit/#/c/22913/ https://gerrit.iotivity.org/gerrit/#/c/22873/ https://gerrit.iotivity.org/gerrit/#/c/22747/ https://gerrit.iotivity.org/gerrit/#/c/22855/ https://gerrit.iotivity.org/gerrit/#/c/22857/ https://gerrit.iotivity.org/gerrit/#/c/21675/ https://gerrit.iotivity.org/gerrit/#/c/22833/ https://gerrit.iotivity.org/gerrit/#/c/22721/ https://gerrit.iotivity.org/gerrit/#/c/22813/ https://gerrit.iotivity.org/gerrit/#/c/22823/ https://gerrit.iotivity.org/gerrit/#/c/22849/ https://gerrit.iotivity.org/gerrit/#/c/22835/ https://gerrit.iotivity.org/gerrit/#/c/22821/ https://gerrit.iotivity.org/gerrit/#/c/22825/ https://gerrit.iotivity.org/gerrit/#/c/22817/ https://gerrit.iotivity.org/gerrit/#/c/22815/ https://gerrit.iotivity.org/gerrit/#/c/22799/ https://gerrit.iotivity.org/gerrit/#/c/22587/ https://gerrit.iotivity.org/gerrit/#/c/22845/ https://gerrit.iotivity.org/gerrit/#/c/21919/ https://gerrit.iotivity.org/gerrit/#/c/22827/ https://gerrit.iotivity.org/gerrit/#/c/22819/ https://gerrit.iotivity.org/gerrit/#/c/22841/ Conflicts: resource/csdk/connectivity/src/bt_le_adapter/caleadapter.c resource/csdk/connectivity/src/tcp_adapter/catcpserver.c resource/csdk/security/provisioning/sample/oic_svr_db_server_mfg.dat resource/csdk/security/tool/svrdbeditor_src/svrdbeditorcommon.c resource/csdk/security/tool/svrdbeditor_src/svrdbeditordoxm.c resource/csdk/stack/src/ocstack.c resource/examples/oic_svr_db_server.dat Bug: https://jira.iotivity.org/browse/IOT-2453 Change-Id: Ia7f9297dda815fb518f6d869f8ad94fcae953633 Signed-off-by:
George Nash <george.nash@intel.com>
-
- 30 Oct, 2017 1 commit
-
-
Philippe Coval authored
It was needed by tizen's IoT con, this is replacing downstream patch that install internal security headers: tizen: Ship more security headers if enabled [youngman] - Add header files related to security [Philippe Coval] - If built with security on, ships all headers or none - To be used by iotcon - Only ship them if usable (with security flag on) Change-Id: I9c8edccddec5626119cb3adb39959437ab350413 Signed-off-by:
youngman <yman.jung@samsung.com> Credit-to: youngman <yman.jung@samsung.com> Origin: https://review.tizen.org/gerrit/#/c/80131/Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com>
-
- 28 Oct, 2017 1 commit
-
-
Philippe Coval authored
Introducing "iotivity" namespace for headers, to avoid potential clash in /usr/include on Linux systems. Developers should rely on pkg-config to look for headers locations, or/and use "#include <iotivity/*>" in application sources. Packagers can still symlink to legacy path if needed, to ensure a smooth transition (See upcoming Tizen/Yocto changes). For more details please check chapter: https://wiki.iotivity.org/build#install Bug: https://jira.iotivity.org/browse/IOT-524 Change-Id: I40533ad76037dc9376724d4e4397e2246d801013 Origin: https://gerrit.iotivity.org/gerrit/#/c/8137/Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com>
-
- 26 Oct, 2017 1 commit
-
-
Rami Alshafi authored
cherry-pick from 1.3-rel The default arch for the raspberry pi board is either armv6l or armv7l depending on board hardware version. Neither of them are included in the valid values for the TARGET_ARCH build option. The current workaround is to pass TARGET_ARCH=arm to the build command. This change will enable the default arch. Change-Id: I7f07734f5e06d79d13275254fb01f924227e229a Signed-off-by:
Rami Alshafi <ralshafi@vprime.com> (cherry picked from commit 7ee4eee5)
-
- 25 Oct, 2017 7 commits
-
-
George Nash authored
Documented all the functions referencing the native code. Note the OcProvisioning setPinType method had a return value int. The was returning the return value of the native call that was the status. Due to the way the code was writen the only value that could be returned was when things worked as expected. All other values were thrown so the return value was un-needed. The function was changed to have a return type of void. Bug:https://jira.iotivity.org/browse/IOT-2838 Change-Id: I3b5955a336661574dde9f70c87b6ead3dcd5ea7b Signed-off-by:
George Nash <george.nash@intel.com>
-
George Nash authored
The coding standard states: Code must compile with no warnings. Without flags forcing warnings off. see: https://wiki.iotivity.org/iotivity_c_coding_standards Its possible that using an untested version of gcc could result in build warings that are not yet fixed. For this reason the build option ERROR_ON_WARN was added to make it possible to turn off the -Werror flag. This should only be used locally an not changed on the CI build. Due to some bugs in older version of gcc some warnings are forced off when using an older version of gcc. This change will force code to follow the coding standard of building with no warnings. The coapHttpParser code produces a build warning that currently is not solved. When building the coap_http_proxy library the -Werror build flag is removed. Don't use the -Werror build option for extlib yaml code. Don't use the -Werror build option for coap library Change-Id: Ifcc25ed7e5b8637ac4383a7bfa51ace105ed9458 Signed-off-by:
George Nash <george.nash@intel.com>
-
Mats Wichmann authored
After recent changes to either the json2cbor tool or to the source security files, the checked-in .dat files no longer match what is being generated. Check in the ones that show changes. Change-Id: I78a1e3032057261630f54b8dc608863c1b6dc216 Signed-off-by:
Mats Wichmann <mats@linux.com>
-
Mats Wichmann authored
SCons 3 works with Python 3.x. Try to eliminate places where the scons scripts don't work with Py3. The most "interesting" one is that subprocess calls to run an external system command do not return a string, so if we need to do "if substring in string" type queries on the subprocess return, we need to call a decoder method to turn it into a string. SCons provides SCons.Util.to_String for this purpose. Also on strings, there is no longer a 'string_escape' encoder, Py3 strings are unicode so 'unicode_escape' is available. This is handled with a try block. Another change is in lambda usage: Python 3 abolished tuple argument unpacking, and since lambdas only take a single argument usages which look like multiple arguments (but are actually a tuple), this has an effect in a couple of places. The 2to3 tool suggested the changes here. The local imports in build_common/iotivityconfig were changed to use the relative-import syntax (a preceding dot). This has been around for a long time, so causes no problem for Python 2 (in since 2.4). Python 3 eliminates the cmp method, so the call to sort the help message by argument name generated a syntax error. It turns out the sort named argument can also take a boolean value (undocumented; scons3 docs will fix that for next release), so instead set sort=True. Change-Id: I0582e99a83f6ca5246dc566727c0b04b5ed4199b Signed-off-by:
Mats Wichmann <mats@linux.com>
-
Mats Wichmann authored
One more place turned up where build happens in src dir instead of in variant dir, which impacts parallel builds of different flavors. It seems that placing a source file from another part of the project into the source list defeats the variant dir. This proposal takes it out and linked to the library it appears in instead. Change-Id: I73283fb854fd899e5609017f2bb8a52fc8c00675 Signed-off-by:
Mats Wichmann <mats@linux.com>
-
Ashok Babu Channa authored
-
Nathan Heldt-Sheller authored
See JIRA IOT-2830 for more information. Change-Id: If043f6705ccdede4630b469c13e1933a2b53af16 Signed-off-by:
Nathan Heldt-Sheller <nathan.heldt-sheller@intel.com>
-
- 24 Oct, 2017 3 commits
-
-
George Nash authored
Bug: https://jira.iotivity.org/browse/IOT-2455 Change-Id: I1415ec047ebc8ce4f2679b8789a104c627ec2db4 Signed-off-by:
George Nash <george.nash@intel.com>
-
Rami Alshafi authored
The default arch for the raspberry pi board is either armv6l or armv7l depending on board hardware version. Neither of them are included in the valid values for the TARGET_ARCH build option. The current workaround is to pass TARGET_ARCH=arm to the build command. This change will enable the default arch. Change-Id: I7f07734f5e06d79d13275254fb01f924227e229a Signed-off-by:
Rami Alshafi <ralshafi@vprime.com>
-
Oleh Vasyliev authored
Change-Id: Ie7b0a00963b22ee1189918ed67ed64ae05f500cf Signed-off-by:
Oleh Vasyliev <o.vasyliev@samsung.com>
-
- 23 Oct, 2017 4 commits
-
-
Nathan Heldt-Sheller authored
The Update handler is still doing things such as self-updating /doxm.rowneruuid or /doxm.owned. Also, the logic for determining OTM start/stop is wrong. This patch cleans up the JustWorks flow as a template, and the same fix will be applied to Random PIN and Cert-based once verified and reviewed. Change-Id: Ieb68911de87cf816597352aec760b3ef85baa87d Signed-off-by:
Nathan Heldt-Sheller <nathan.heldt-sheller@intel.com>
-
Nathan Heldt-Sheller authored
The fix to /cred.rowneruuid (from many to one) means we have to reset the single global rowneruuid also. Change-Id: I309e5bfe9926290785d4943d2b9358fc06448a20 Signed-off-by:
Nathan Heldt-Sheller <nathan.heldt-sheller@intel.com>
-
imtiaz.h authored
1. for selectedDeviceInfo = NULL api returns OC_STACK_INVALID_PARAM Change-Id: Idb316438a76d70fcc7a91a2e119aadd0c771bde7 Signed-off-by:
imtiaz.h <imtiaz.h@samsung.com>
-
Harry authored
Java ESResult is not in sync with C++ SDK ESResult enum values. Change-Id: I0ab0e1ba88858fc8c511a56d046d40c1708760cd Signed-off-by:
Harry <h.marappa@samsung.com>
-
- 21 Oct, 2017 1 commit
-
-
Nathan Heldt-Sheller authored
A recent patch over-wrote the fix to 2806 (patch 22855) so this is just a re-creation of 22855. However gerrit can't figure out how to re-apply 22855, and I don't know how to force it, so I'm just creating a new patch. Change-Id: I5c4b67a3cdfa1f9a4368fc8f7b24203da1644524 Signed-off-by:
Nathan Heldt-Sheller <nathan.heldt-sheller@intel.com>
-