summaryrefslogtreecommitdiffstats
path: root/meta-agl-bsp/meta-rcar-gen3/recipes-bsp
AgeCommit message (Expand)AuthorFilesLines
2017-03-19[rcar-gen3] Remove fix on opteeRonan Le Martret2-18/+1
2017-03-19[rcar-gen3] Updated arm-trusted-firmwareRonan Le Martret1-10/+10
2017-01-31Fix build for MACHINE m3ulcbRonan Le Martret1-4/+3
2017-01-18fix gcc 6 build for arm-trusted-firmwareRonan2-0/+27
2017-01-10fix build with gcc6Ronan2-0/+31
2017-01-10fix build with gcc6Ronan1-0/+3
2017-01-10fix gcc 6 buildRonan2-0/+95
2016-12-02optee-os depend on python-pycryptoRonan1-0/+2
2016-11-17meta-rcar-gen3: optee-os: build fixupYannick Gicquel2-8/+19
2016-11-14meta-agl-bsp: meta-rcar-gen3: initial integrationYannick Gicquel1-0/+9
span>/* * Copyright (C) 2017 Mentor Graphics Development (Deutschland) GmbH * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef TMCAGLWM_POLICY_HPP #define TMCAGLWM_POLICY_HPP #include "layout.hpp" #include "hmi-debug.h" namespace wm { class Policy { public: bool layout_is_valid(LayoutState const & /* layout */) { // We do not check for policy currently HMI_DEBUG("wm", "Policy check returns positive"); return true; } }; } // namespace wm #endif //TMCAGLWM_POLICY_HPP