Re: [meta-freescale] [Documentation][PATCH 1/5] scripts: Update to version 2.2 (Morty)

2016-11-11 Thread Daiane Angolini
On Fri, Nov 11, 2016 at 1:22 PM, Otavio Salvador
 wrote:
> On Fri, Nov 11, 2016 at 12:47 PM, Daiane Angolini  
> wrote:
>> Does anyone use or have used those documentations? What do you think
>> about eliminating all documentes but Release Notes?
>
> I am fine in reducing the documents we maintain; we can check if any
> section of user guide should be moved to the Release Notes otherwise
> we can merge this patchset and remove the docs next.

That was what I was planning. Merge the patchset and then work to
reduce the documentation.

I'm going to push this patchset merge this afternoon.

Daiane
>
> --
> Otavio Salvador O.S. Systems
> http://www.ossystems.com.brhttp://code.ossystems.com.br
> Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [Documentation][PATCH 1/5] scripts: Update to version 2.2 (Morty)

2016-11-11 Thread Otavio Salvador
On Fri, Nov 11, 2016 at 12:47 PM, Daiane Angolini  wrote:
> Does anyone use or have used those documentations? What do you think
> about eliminating all documentes but Release Notes?

I am fine in reducing the documents we maintain; we can check if any
section of user guide should be moved to the Release Notes otherwise
we can merge this patchset and remove the docs next.

-- 
Otavio Salvador O.S. Systems
http://www.ossystems.com.brhttp://code.ossystems.com.br
Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [Documentation][PATCH 1/5] scripts: Update to version 2.2 (Morty)

2016-11-11 Thread Daiane Angolini
The patchset looks good to me. However it made me think about the
reason why we are maintaining documentation we don't use such as FAQ
and User Guide.

Maybe it's better just remove it.


Does anyone use or have used those documentations? What do you think
about eliminating all documentes but Release Notes?


Daiane

On Wed, Nov 9, 2016 at 3:30 PM, Fabio Berton
 wrote:
>   - Update FSL layers names
>   - Add DISTRO and MACHINE to run setup-environment
>   - Update Yocto Project Bugzilla url address
>
> Signed-off-by: Fabio Berton 
> ---
>  scripts/bitbake-metadata2doc.py | 18 +-
>  scripts/bitbake-metadata2doc.sh |  6 +++---
>  scripts/generate-bugs-table.py  |  6 +++---
>  scripts/output-machine-list |  2 +-
>  scripts/test-sheet-parser.py|  2 +-
>  5 files changed, 17 insertions(+), 17 deletions(-)
>
> diff --git a/scripts/bitbake-metadata2doc.py b/scripts/bitbake-metadata2doc.py
> index 98af3f8..001d59d 100644
> --- a/scripts/bitbake-metadata2doc.py
> +++ b/scripts/bitbake-metadata2doc.py
> @@ -112,8 +112,8 @@ def write_fsl_community_bsp_supported_kernels(data, 
> out_dir):
>  kernel = board_data['recipes']['virtual/kernel']
>  recipe = kernel['recipe']
>  recipe_file = kernel['file']
> -if (('/sources/meta-fsl-arm/' in recipe_file) or \
> -('/sources/meta-fsl-arm-extra/' in recipe_file)) and \
> +if (('/sources/meta-freescale/' in recipe_file) or \
> +('/sources/meta-freescale-3rdparty/' in recipe_file)) and \
>  recipe not in kernel_recipes:
>  kernels += [[recipe, kernel['description']]]
>  kernel_recipes.append(recipe)
> @@ -128,8 +128,8 @@ def 
> write_fsl_community_bsp_supported_bootloaders_descr(data, out_dir):
>  bootloader = board_data['recipes'][bootloader_software]
>  recipe = bootloader['recipe']
>  recipe_file = bootloader['file']
> -if (('/sources/meta-fsl-arm/' in recipe_file) or \
> -('/sources/meta-fsl-arm-extra/' in recipe_file)) and 
> \
> +if (('/sources/meta-freescale/' in recipe_file) or \
> +('/sources/meta-freescale-3rdparty/' in 
> recipe_file)) and \
>  recipe not in bootloader_recipes:
>  bootloaders += [[recipe, bootloader['description']]]
>  bootloader_recipes.append(recipe)
> @@ -305,14 +305,14 @@ def write_soc_pkg(data, out_dir):
>
>
>  def write_maintainers_tables(data, out_dir, bsp_dir):
> -meta_fsl_arm_machines_dir = os.path.join(bsp_dir, 'sources', 
> 'meta-fsl-arm', 'conf', 'machine')
> -meta_fsl_arm_extra_machines_dir = os.path.join(bsp_dir, 'sources', 
> 'meta-fsl-arm-extra', 'conf', 'machine')
> -get_maintainer_script = os.path.join(bsp_dir, 'sources', 'meta-fsl-arm', 
> 'scripts', 'get-maintainer')
> +meta_freescale_machines_dir = os.path.join(bsp_dir, 'sources', 
> 'meta-freescale', 'conf', 'machine')
> +meta_freescale_3rdparty_machines_dir = os.path.join(bsp_dir, 'sources', 
> 'meta-freescale-3rdparty', 'conf', 'machine')
> +get_maintainer_script = os.path.join(bsp_dir, 'sources', 
> 'meta-freescale', 'scripts', 'get-maintainer')
>  try:
>  get_maintainer_pipe = subprocess.Popen([get_maintainer_script,
>  '--dump',
> -meta_fsl_arm_machines_dir,
> -
> meta_fsl_arm_extra_machines_dir],
> +meta_freescale_machines_dir,
> +
> meta_freescale_3rdparty_machines_dir],
> stdout=subprocess.PIPE)
>  except OSError:
>  error('Could not run the get-maintainer script (attempted %s)' % 
> (get_maintainer_script,))
> diff --git a/scripts/bitbake-metadata2doc.sh b/scripts/bitbake-metadata2doc.sh
> index 3616fe1..775e26d 100755
> --- a/scripts/bitbake-metadata2doc.sh
> +++ b/scripts/bitbake-metadata2doc.sh
> @@ -46,7 +46,7 @@ gitdm_dir="$2"
>  start_commit="$3"
>  end_commit="$4"
>  anchor="`pwd`"
> -fsl_layers="meta-fsl-arm meta-fsl-arm-extra meta-fsl-demos"
> +fsl_layers="meta-freescale meta-freescale-3rdparty meta-freescale-distro"
>
>  machines=
>  if [ -n "$MACHINES" ]; then
> @@ -80,9 +80,9 @@ build_dir=`mktemp -d --tmpdir=$yocto_dir`
>  for machine in $machines; do
>  cd $yocto_dir
>  echo "Using $build_dir as build directory"
> -MACHINE=$machine . ./setup-environment `basename $build_dir`
> +MACHINE=$machine DISTRO=fslc-framebuffer . ./setup-environment `basename 
> $build_dir`
>
> -MACHINE=$machine python3 $anchor/extract-bitbake-metadata.py \
> +MACHINE=$machine DISTRO=fslc-framebuffer python3 
> $anchor/extract-bitbake-metadata.py \

Re: [meta-freescale] [Documentation][PATCH 1/5] scripts: Update to version 2.2 (Morty)

2016-11-10 Thread Thomas Thorne
Patch looks OK at link.

I wonder were the extra line breaks came from.  As long as the committed code 
ends up OK that is what matters but it is a bit confusing.

Thomas A. F. Thorne<mailto:thomas.tho...@net2edge.com>  Software Engineer  
Net2Edge<http://www.net2edge.com/>

From: Fabio Berton [mailto:fabio.ber...@ossystems.com.br]
Sent: 10 November 2016 11:57
To: Thomas Thorne <thomas.tho...@net2edge.com>
Cc: meta-freescale@yoctoproject.org
Subject: Re: [meta-freescale] [Documentation][PATCH 1/5] scripts: Update to 
version 2.2 (Morty)

Hi Thomas,
Check this link https://patchwork.openembedded.org/patch/133740/

I don't know what happened, but my patch is fine and your answer has line 
breaks. Anyway, check patchwork link.

On Thu, Nov 10, 2016 at 8:03 AM, Thomas Thorne 
<thomas.tho...@net2edge.com<mailto:thomas.tho...@net2edge.com>> wrote:
I am almost certain this line change breaks the Python code:

--- a/scripts/bitbake-metadata2doc.py
+++ b/scripts/bitbake-metadata2doc.py
@@ -112,8 +112,8 @@ def write_fsl_community_bsp_supported_kernels(data, 
out_dir):
 kernel = board_data['recipes']['virtual/kernel']
 recipe = kernel['recipe']
 recipe_file = kernel['file']
-if (('/sources/meta-fsl-arm/' in recipe_file) or \
-('/sources/meta-fsl-arm-extra/' in recipe_file)) and \
+if (('/sources/meta-freescale/' in recipe_file) or \
+('/sources/meta-freescale-3rdparty/' in recipe_file))
+ and \

That looks like \ are used for line continuation but an extra new line is being 
added before the "and \"


I am more confident about the .sh files:
$machines; do
 cd $yocto_dir
 echo "Using $build_dir as build directory"
-MACHINE=$machine . ./setup-environment `basename $build_dir`
+MACHINE=$machine DISTRO=fslc-framebuffer . ./setup-environment
+ `basename $build_dir`

-MACHINE=$machine python3 $anchor/extract-bitbake-metadata.py \
+MACHINE=$machine DISTRO=fslc-framebuffer python3
+ $anchor/extract-bitbake-metadata.py \
 $anchor/$marshalled_data_file \
 apptrk \
 barebox \

That will behave differently.

Thomas A. F. Thorne  Software Engineer  Net2Edge

-Original Message-
From: 
meta-freescale-boun...@yoctoproject.org<mailto:meta-freescale-boun...@yoctoproject.org>
 
[mailto:meta-freescale-boun...@yoctoproject.org<mailto:meta-freescale-boun...@yoctoproject.org>]
 On Behalf Of Fabio Berton
Sent: 09 November 2016 17:30
To: meta-freescale@yoctoproject.org<mailto:meta-freescale@yoctoproject.org>
Subject: [meta-freescale] [Documentation][PATCH 1/5] scripts: Update to version 
2.2 (Morty)

  - Update FSL layers names
  - Add DISTRO and MACHINE to run setup-environment
  - Update Yocto Project Bugzilla url address

Signed-off-by: Fabio Berton 
<fabio.ber...@ossystems.com.br<mailto:fabio.ber...@ossystems.com.br>>
---
 scripts/bitbake-metadata2doc.py | 18 +-  
scripts/bitbake-metadata2doc.sh |  6 +++---  scripts/generate-bugs-table.py  |  
6 +++---
 scripts/output-machine-list |  2 +-
 scripts/test-sheet-parser.py|  2 +-
 5 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/scripts/bitbake-metadata2doc.py b/scripts/bitbake-metadata2doc.py 
index 98af3f8..001d59d 100644
--- a/scripts/bitbake-metadata2doc.py
+++ b/scripts/bitbake-metadata2doc.py
@@ -112,8 +112,8 @@ def write_fsl_community_bsp_supported_kernels(data, 
out_dir):
 kernel = board_data['recipes']['virtual/kernel']
 recipe = kernel['recipe']
 recipe_file = kernel['file']
-if (('/sources/meta-fsl-arm/' in recipe_file) or \
-('/sources/meta-fsl-arm-extra/' in recipe_file)) and \
+if (('/sources/meta-freescale/' in recipe_file) or \
+('/sources/meta-freescale-3rdparty/' in recipe_file))
+ and \
 recipe not in kernel_recipes:
 kernels += [[recipe, kernel['description']]]
 kernel_recipes.append(recipe) @@ -128,8 +128,8 @@ def 
write_fsl_community_bsp_supported_bootloaders_descr(data, out_dir):
 bootloader = board_data['recipes'][bootloader_software]
 recipe = bootloader['recipe']
 recipe_file = bootloader['file']
-if (('/sources/meta-fsl-arm/' in recipe_file) or \
-('/sources/meta-fsl-arm-extra/' in recipe_file)) and \
+if (('/sources/meta-freescale/' in recipe_file) or \
+('/sources/meta-freescale-3rdparty/' in
+ recipe_file)) and \
 recipe not in bootloader_recipes:
 bootloaders += [[recipe, bootloader['description']]]
 bootloader_recipes.append(recipe) @@ -305,14 +305,14 @@ 
def write_soc_pkg(data, out_dir):


 def write_maintainers_tables(data, out_dir, bsp_dir):
-meta_fsl_arm_machines_dir = os.path.join(bsp_dir, 'sources', 
'meta-

Re: [meta-freescale] [Documentation][PATCH 1/5] scripts: Update to version 2.2 (Morty)

2016-11-10 Thread Fabio Berton
Hi Thomas,

Check this link https://patchwork.openembedded.org/patch/133740/

I don't know what happened, but my patch is fine and your answer has line
breaks. Anyway, check patchwork link.

On Thu, Nov 10, 2016 at 8:03 AM, Thomas Thorne <thomas.tho...@net2edge.com>
wrote:

> I am almost certain this line change breaks the Python code:
>
> --- a/scripts/bitbake-metadata2doc.py
> +++ b/scripts/bitbake-metadata2doc.py
> @@ -112,8 +112,8 @@ def write_fsl_community_bsp_supported_kernels(data,
> out_dir):
>  kernel = board_data['recipes']['virtual/kernel']
>  recipe = kernel['recipe']
>  recipe_file = kernel['file']
> -if (('/sources/meta-fsl-arm/' in recipe_file) or \
> -('/sources/meta-fsl-arm-extra/' in recipe_file)) and \
> +if (('/sources/meta-freescale/' in recipe_file) or \
> +('/sources/meta-freescale-3rdparty/' in recipe_file))
> + and \
>
> That looks like \ are used for line continuation but an extra new line is
> being added before the "and \"
>
>
> I am more confident about the .sh files:
> $machines; do
>  cd $yocto_dir
>  echo "Using $build_dir as build directory"
> -MACHINE=$machine . ./setup-environment `basename $build_dir`
> +MACHINE=$machine DISTRO=fslc-framebuffer . ./setup-environment
> + `basename $build_dir`
>
> -MACHINE=$machine python3 $anchor/extract-bitbake-metadata.py \
> +MACHINE=$machine DISTRO=fslc-framebuffer python3
> + $anchor/extract-bitbake-metadata.py \
>  $anchor/$marshalled_data_file \
>  apptrk \
>  barebox \
>
> That will behave differently.
>
> Thomas A. F. Thorne  Software Engineer  Net2Edge
>
> -Original Message-
> From: meta-freescale-boun...@yoctoproject.org [mailto:meta-freescale-
> boun...@yoctoproject.org] On Behalf Of Fabio Berton
> Sent: 09 November 2016 17:30
> To: meta-freescale@yoctoproject.org
> Subject: [meta-freescale] [Documentation][PATCH 1/5] scripts: Update to
> version 2.2 (Morty)
>
>   - Update FSL layers names
>   - Add DISTRO and MACHINE to run setup-environment
>   - Update Yocto Project Bugzilla url address
>
> Signed-off-by: Fabio Berton <fabio.ber...@ossystems.com.br>
> ---
>  scripts/bitbake-metadata2doc.py | 18 +-
> scripts/bitbake-metadata2doc.sh |  6 +++---
> scripts/generate-bugs-table.py  |  6 +++---
>  scripts/output-machine-list |  2 +-
>  scripts/test-sheet-parser.py|  2 +-
>  5 files changed, 17 insertions(+), 17 deletions(-)
>
> diff --git a/scripts/bitbake-metadata2doc.py b/scripts/bitbake-metadata2doc.py
> index 98af3f8..001d59d 100644
> --- a/scripts/bitbake-metadata2doc.py
> +++ b/scripts/bitbake-metadata2doc.py
> @@ -112,8 +112,8 @@ def write_fsl_community_bsp_supported_kernels(data,
> out_dir):
>  kernel = board_data['recipes']['virtual/kernel']
>  recipe = kernel['recipe']
>  recipe_file = kernel['file']
> -if (('/sources/meta-fsl-arm/' in recipe_file) or \
> -('/sources/meta-fsl-arm-extra/' in recipe_file)) and \
> +if (('/sources/meta-freescale/' in recipe_file) or \
> +('/sources/meta-freescale-3rdparty/' in recipe_file))
> + and \
>  recipe not in kernel_recipes:
>  kernels += [[recipe, kernel['description']]]
>  kernel_recipes.append(recipe) @@ -128,8 +128,8 @@ def
> write_fsl_community_bsp_supported_bootloaders_descr(data, out_dir):
>  bootloader = board_data['recipes'][bootloader_software]
>  recipe = bootloader['recipe']
>  recipe_file = bootloader['file']
> -if (('/sources/meta-fsl-arm/' in recipe_file) or \
> -('/sources/meta-fsl-arm-extra/' in recipe_file))
> and \
> +if (('/sources/meta-freescale/' in recipe_file) or \
> +('/sources/meta-freescale-3rdparty/' in
> + recipe_file)) and \
>  recipe not in bootloader_recipes:
>  bootloaders += [[recipe, bootloader['description']]]
>  bootloader_recipes.append(recipe) @@ -305,14 +305,14
> @@ def write_soc_pkg(data, out_dir):
>
>
>  def write_maintainers_tables(data, out_dir, bsp_dir):
> -meta_fsl_arm_machines_dir = os.path.join(bsp_dir, 'sources',
> 'meta-fsl-arm', 'conf', 'machine')
> -meta_fsl_arm_extra_machines_dir = os.path.join(bsp_dir, 'sources',
> 'meta-fsl-arm-extra', 'conf', 'machine')
> -get_maintainer_script = os.path.join(bsp_dir, 'sources',
> 'meta-fsl-arm', 'scripts', 'get-maintainer')
> +meta_freescale_machines_dir = os.path.join(bsp_dir, 'sources',
> 'meta

Re: [meta-freescale] [Documentation][PATCH 1/5] scripts: Update to version 2.2 (Morty)

2016-11-10 Thread Thomas Thorne
I am almost certain this line change breaks the Python code:

--- a/scripts/bitbake-metadata2doc.py
+++ b/scripts/bitbake-metadata2doc.py
@@ -112,8 +112,8 @@ def write_fsl_community_bsp_supported_kernels(data, 
out_dir):
 kernel = board_data['recipes']['virtual/kernel']
 recipe = kernel['recipe']
 recipe_file = kernel['file']
-if (('/sources/meta-fsl-arm/' in recipe_file) or \
-('/sources/meta-fsl-arm-extra/' in recipe_file)) and \
+if (('/sources/meta-freescale/' in recipe_file) or \
+('/sources/meta-freescale-3rdparty/' in recipe_file)) 
+ and \

That looks like \ are used for line continuation but an extra new line is being 
added before the "and \"


I am more confident about the .sh files: 
$machines; do
 cd $yocto_dir
 echo "Using $build_dir as build directory"
-MACHINE=$machine . ./setup-environment `basename $build_dir`
+MACHINE=$machine DISTRO=fslc-framebuffer . ./setup-environment 
+ `basename $build_dir`
 
-MACHINE=$machine python3 $anchor/extract-bitbake-metadata.py \
+MACHINE=$machine DISTRO=fslc-framebuffer python3 
+ $anchor/extract-bitbake-metadata.py \
 $anchor/$marshalled_data_file \
 apptrk \
 barebox \

That will behave differently. 

Thomas A. F. Thorne  Software Engineer  Net2Edge

-Original Message-
From: meta-freescale-boun...@yoctoproject.org 
[mailto:meta-freescale-boun...@yoctoproject.org] On Behalf Of Fabio Berton
Sent: 09 November 2016 17:30
To: meta-freescale@yoctoproject.org
Subject: [meta-freescale] [Documentation][PATCH 1/5] scripts: Update to version 
2.2 (Morty)

  - Update FSL layers names
  - Add DISTRO and MACHINE to run setup-environment
  - Update Yocto Project Bugzilla url address

Signed-off-by: Fabio Berton <fabio.ber...@ossystems.com.br>
---
 scripts/bitbake-metadata2doc.py | 18 +-  
scripts/bitbake-metadata2doc.sh |  6 +++---  scripts/generate-bugs-table.py  |  
6 +++---
 scripts/output-machine-list |  2 +-
 scripts/test-sheet-parser.py|  2 +-
 5 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/scripts/bitbake-metadata2doc.py b/scripts/bitbake-metadata2doc.py 
index 98af3f8..001d59d 100644
--- a/scripts/bitbake-metadata2doc.py
+++ b/scripts/bitbake-metadata2doc.py
@@ -112,8 +112,8 @@ def write_fsl_community_bsp_supported_kernels(data, 
out_dir):
 kernel = board_data['recipes']['virtual/kernel']
 recipe = kernel['recipe']
 recipe_file = kernel['file']
-if (('/sources/meta-fsl-arm/' in recipe_file) or \
-('/sources/meta-fsl-arm-extra/' in recipe_file)) and \
+if (('/sources/meta-freescale/' in recipe_file) or \
+('/sources/meta-freescale-3rdparty/' in recipe_file)) 
+ and \
 recipe not in kernel_recipes:
 kernels += [[recipe, kernel['description']]]
 kernel_recipes.append(recipe) @@ -128,8 +128,8 @@ def 
write_fsl_community_bsp_supported_bootloaders_descr(data, out_dir):
 bootloader = board_data['recipes'][bootloader_software]
 recipe = bootloader['recipe']
 recipe_file = bootloader['file']
-if (('/sources/meta-fsl-arm/' in recipe_file) or \
-('/sources/meta-fsl-arm-extra/' in recipe_file)) and \
+if (('/sources/meta-freescale/' in recipe_file) or \
+('/sources/meta-freescale-3rdparty/' in 
+ recipe_file)) and \
 recipe not in bootloader_recipes:
 bootloaders += [[recipe, bootloader['description']]]
 bootloader_recipes.append(recipe) @@ -305,14 +305,14 @@ 
def write_soc_pkg(data, out_dir):
 
 
 def write_maintainers_tables(data, out_dir, bsp_dir):
-meta_fsl_arm_machines_dir = os.path.join(bsp_dir, 'sources', 
'meta-fsl-arm', 'conf', 'machine')
-meta_fsl_arm_extra_machines_dir = os.path.join(bsp_dir, 'sources', 
'meta-fsl-arm-extra', 'conf', 'machine')
-get_maintainer_script = os.path.join(bsp_dir, 'sources', 'meta-fsl-arm', 
'scripts', 'get-maintainer')
+meta_freescale_machines_dir = os.path.join(bsp_dir, 'sources', 
'meta-freescale', 'conf', 'machine')
+meta_freescale_3rdparty_machines_dir = os.path.join(bsp_dir, 'sources', 
'meta-freescale-3rdparty', 'conf', 'machine')
+get_maintainer_script = os.path.join(bsp_dir, 'sources', 
+ 'meta-freescale', 'scripts', 'get-maintainer')
 try:
 get_maintainer_pipe = subprocess.Popen([get_maintainer_script,
 '--dump',
-meta_fsl_arm_machines_dir,
-
meta_fsl_arm_extra_machines_dir],
+meta_freescale_machines_dir,
+
+ meta_frees

[meta-freescale] [Documentation][PATCH 1/5] scripts: Update to version 2.2 (Morty)

2016-11-09 Thread Fabio Berton
  - Update FSL layers names
  - Add DISTRO and MACHINE to run setup-environment
  - Update Yocto Project Bugzilla url address

Signed-off-by: Fabio Berton 
---
 scripts/bitbake-metadata2doc.py | 18 +-
 scripts/bitbake-metadata2doc.sh |  6 +++---
 scripts/generate-bugs-table.py  |  6 +++---
 scripts/output-machine-list |  2 +-
 scripts/test-sheet-parser.py|  2 +-
 5 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/scripts/bitbake-metadata2doc.py b/scripts/bitbake-metadata2doc.py
index 98af3f8..001d59d 100644
--- a/scripts/bitbake-metadata2doc.py
+++ b/scripts/bitbake-metadata2doc.py
@@ -112,8 +112,8 @@ def write_fsl_community_bsp_supported_kernels(data, 
out_dir):
 kernel = board_data['recipes']['virtual/kernel']
 recipe = kernel['recipe']
 recipe_file = kernel['file']
-if (('/sources/meta-fsl-arm/' in recipe_file) or \
-('/sources/meta-fsl-arm-extra/' in recipe_file)) and \
+if (('/sources/meta-freescale/' in recipe_file) or \
+('/sources/meta-freescale-3rdparty/' in recipe_file)) and \
 recipe not in kernel_recipes:
 kernels += [[recipe, kernel['description']]]
 kernel_recipes.append(recipe)
@@ -128,8 +128,8 @@ def 
write_fsl_community_bsp_supported_bootloaders_descr(data, out_dir):
 bootloader = board_data['recipes'][bootloader_software]
 recipe = bootloader['recipe']
 recipe_file = bootloader['file']
-if (('/sources/meta-fsl-arm/' in recipe_file) or \
-('/sources/meta-fsl-arm-extra/' in recipe_file)) and \
+if (('/sources/meta-freescale/' in recipe_file) or \
+('/sources/meta-freescale-3rdparty/' in recipe_file)) 
and \
 recipe not in bootloader_recipes:
 bootloaders += [[recipe, bootloader['description']]]
 bootloader_recipes.append(recipe)
@@ -305,14 +305,14 @@ def write_soc_pkg(data, out_dir):
 
 
 def write_maintainers_tables(data, out_dir, bsp_dir):
-meta_fsl_arm_machines_dir = os.path.join(bsp_dir, 'sources', 
'meta-fsl-arm', 'conf', 'machine')
-meta_fsl_arm_extra_machines_dir = os.path.join(bsp_dir, 'sources', 
'meta-fsl-arm-extra', 'conf', 'machine')
-get_maintainer_script = os.path.join(bsp_dir, 'sources', 'meta-fsl-arm', 
'scripts', 'get-maintainer')
+meta_freescale_machines_dir = os.path.join(bsp_dir, 'sources', 
'meta-freescale', 'conf', 'machine')
+meta_freescale_3rdparty_machines_dir = os.path.join(bsp_dir, 'sources', 
'meta-freescale-3rdparty', 'conf', 'machine')
+get_maintainer_script = os.path.join(bsp_dir, 'sources', 'meta-freescale', 
'scripts', 'get-maintainer')
 try:
 get_maintainer_pipe = subprocess.Popen([get_maintainer_script,
 '--dump',
-meta_fsl_arm_machines_dir,
-
meta_fsl_arm_extra_machines_dir],
+meta_freescale_machines_dir,
+
meta_freescale_3rdparty_machines_dir],
stdout=subprocess.PIPE)
 except OSError:
 error('Could not run the get-maintainer script (attempted %s)' % 
(get_maintainer_script,))
diff --git a/scripts/bitbake-metadata2doc.sh b/scripts/bitbake-metadata2doc.sh
index 3616fe1..775e26d 100755
--- a/scripts/bitbake-metadata2doc.sh
+++ b/scripts/bitbake-metadata2doc.sh
@@ -46,7 +46,7 @@ gitdm_dir="$2"
 start_commit="$3"
 end_commit="$4"
 anchor="`pwd`"
-fsl_layers="meta-fsl-arm meta-fsl-arm-extra meta-fsl-demos"
+fsl_layers="meta-freescale meta-freescale-3rdparty meta-freescale-distro"
 
 machines=
 if [ -n "$MACHINES" ]; then
@@ -80,9 +80,9 @@ build_dir=`mktemp -d --tmpdir=$yocto_dir`
 for machine in $machines; do
 cd $yocto_dir
 echo "Using $build_dir as build directory"
-MACHINE=$machine . ./setup-environment `basename $build_dir`
+MACHINE=$machine DISTRO=fslc-framebuffer . ./setup-environment `basename 
$build_dir`
 
-MACHINE=$machine python3 $anchor/extract-bitbake-metadata.py \
+MACHINE=$machine DISTRO=fslc-framebuffer python3 
$anchor/extract-bitbake-metadata.py \
 $anchor/$marshalled_data_file \
 apptrk \
 barebox \
diff --git a/scripts/generate-bugs-table.py b/scripts/generate-bugs-table.py
index 13390a3..dc9bba0 100755
--- a/scripts/generate-bugs-table.py
+++ b/scripts/generate-bugs-table.py
@@ -13,10 +13,10 @@ from doc_utils import tabularize
 
 BASE_DIRECTORY = os.path.dirname(os.path.realpath(__file__ + "/../"))
 
-CLOSED_BUGS_URL =