summaryrefslogtreecommitdiffstats
path: root/README-AGL.md
AgeCommit message (Collapse)AuthorFilesLines
2019-03-15AGL Layer Overview: Re-write of the README-AGL.md fileScott Rifenbark1-23/+26
This topic is really about overviewing the top-level Yocto layers that are part of the AGL build system. These layers are meta-agl, meta-agl-demo, and meta-agl-devel. The README-AGL.md file now simply introduces this fact and is used as a reading guide for the subsequent layer topics. All AGL UCB type information previously in the file is redundant for the docs. Change-Id: Iaeb8d192db977ef47f2f1075de5025acf6fe7019 Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
2018-08-01Remove porter reference from meta-aglRonan Le Martret1-408/+3
* Remove, from recipes, reference to porter, gen2, krogoth. * cleanup mardown from reference to porter. * cleanup markdown (markdownlint score 0). Change-Id: I70b9880fc52ef3c848da588d3a256fa8eee48606 Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh>
2018-01-23Change image type to wic.vmdkChanghyeok Bae1-2/+2
vmdk image type is changed to wic.vmdk in upstream. (From Poky rev: 9d07c736e39a9aa922630b4241eda185a19a11ea) (From OE-Core rev: 929ba563f1bc7195c4981b8e139c432b2cc388ea) Bug-AGL: SPEC-1181 Change-Id: I94fab8ce4d075776b5f72d1c270a333d6b34a4b7 Signed-off-by: Changhyeok Bae <changhyeok.bae@gmail.com>
2017-02-16README-AGL: correct rootfstype to ext4Martin Kelly1-1/+1
README-AGL incorrectly recommends to use rootfstype=ext3, but the current filesystem is ext4, which causes boot failures due to unsupported filesystem features. Without this patch, you get the following when attempting to boot on porter with rootfstype=ext3: EXT3-fs (mmcblk0p1): error: couldn't mount because of unsupported optional features (240) Change-Id: I346b76b59420f1ffb7acea58d82961acdf24aaf1 Signed-off-by: Martin Kelly <mkelly@xevo.com>
2016-11-21README-AGL.md: remove the description about v4l2sink.Harunobu Kurokawa1-41/+0
AGL support only using weston, then AGL cannot support v4l2sink. README-AGL.md describe about v4l2, so remove it. Change-Id: I4f670166fb18be0be88ecd32bdda5691a48f4d07 Signed-off-by: Harunobu Kurokawa <harunobu.kurokawa.dn@renesas.com>
2016-11-14README-AGL.md: Update links to AGL wikiLeon Anavi1-1/+6
Update links to AGL wiki for the getting started guidelines for QEMU, Renesas Porter board and Raspberry Pi 2/3. Change-Id: I39a557d790951232195b369c1b29550a37495ed4 Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
2016-08-05Rewrite and restructure readme filesJan-Simon Moeller1-0/+472
This changeset updates the outdated README.md in meta-agl. We also introduce a split between the README.md which describes the layer itself and a README-AGL.md which contains the information on the AGL distribution. v2: Format in markdown editor - proper markdown now. Change-Id: I4cbe539ffd668c3e1d64df5c40092d5864c1d2ea Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
#fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
/*
 Copyright (C) 2015-2018 IoT.bzh

 author: José Bollo <jose.bollo@iot.bzh>

 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.
*/


struct wgt;
extern int wgt_config_open(struct wgt *wgt);
extern void wgt_config_close();
extern xmlNodePtr wgt_config_widget();
extern xmlNodePtr wgt_config_name();
extern xmlNodePtr wgt_config_description();
extern xmlNodePtr wgt_config_license();
extern xmlNodePtr wgt_config_author();
extern xmlNodePtr wgt_config_content();
extern xmlNodePtr wgt_config_icon(int width, int height);
extern xmlNodePtr wgt_config_first_icon();
extern xmlNodePtr wgt_config_next_icon(xmlNodePtr node);
extern xmlNodePtr wgt_config_first_feature();
extern xmlNodePtr wgt_config_next_feature(xmlNodePtr node);
extern xmlNodePtr wgt_config_first_preference();
extern xmlNodePtr wgt_config_next_preference(xmlNodePtr node);
extern xmlNodePtr wgt_config_first_param(xmlNodePtr node);
extern xmlNodePtr wgt_config_next_param(xmlNodePtr node);