|
[layerindex-web][PATCH] admin.py: Remove has_delete_permission()
The following commit has added on_delete=models.CASCADE to the ForeignKey: === commit 2d526f9b0d363f3e442abc97ef9bd9fab37ee5e4 Author: Amber Elliot <amber.n.elliot@...> Date: Thu Jun 25 15:57:34
The following commit has added on_delete=models.CASCADE to the ForeignKey: === commit 2d526f9b0d363f3e442abc97ef9bd9fab37ee5e4 Author: Amber Elliot <amber.n.elliot@...> Date: Thu Jun 25 15:57:34
|
By
Robert Yang
· #57803
·
|
|
[layerindex-web][PATCH] utils.py: Fix for is_commit_ancestor()
The runcmd() would print an "ERROR" when failed which caused confusions since the failed is expected on old branches, so subprocess.getstatusoutput to fix the problem. Signed-off-by: Robert Yang <liez
The runcmd() would print an "ERROR" when failed which caused confusions since the failed is expected on old branches, so subprocess.getstatusoutput to fix the problem. Signed-off-by: Robert Yang <liez
|
By
Robert Yang
· #57784
·
|
|
[layerindex-web][PATCH] utils.py: Use get_layer_var() to get BBFILE_COLLECTIONS
The commit 38e6288c7dad579518b0de2b6664f23be58889b6 has added oe-core to BBLAYERS by default, and then there will be mutliple BBFILE_COLLECTIONS and caused update.py failed to update layers (most of t
The commit 38e6288c7dad579518b0de2b6664f23be58889b6 has added oe-core to BBLAYERS by default, and then there will be mutliple BBFILE_COLLECTIONS and caused update.py failed to update layers (most of t
|
By
Robert Yang
· #57726
·
|
|
[layerindex-web][PATCH] recipeparse.py: Checkout deplayerbranch before parsing
Fixed: $ ./update.py -b hardknott,master ERROR: Variable PREMIRRORS_append contains an operation using the old override syntax. Please convert this layer/metadata before attempting to use with a newer
Fixed: $ ./update.py -b hardknott,master ERROR: Variable PREMIRRORS_append contains an operation using the old override syntax. Please convert this layer/metadata before attempting to use with a newer
|
By
Robert Yang
· #54737
·
|
|
[PATCH 1/1] update-documentation-conf: python2 -> python3
This script is python3 indeed. Signed-off-by: Robert Yang <liezhi.yang@...> --- documentation/tools/update-documentation-conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git
This script is python3 indeed. Signed-off-by: Robert Yang <liezhi.yang@...> --- documentation/tools/update-documentation-conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git
|
By
Robert Yang
· #45760
·
|
|
[PATCH 0/1] update-documentation-conf: python2 -> python3
The following changes since commit bfe3012ea4b2c973bd6ca5fa1de1adf51e1a9da4: busybox: Fix typo in syslog initscript (2019-06-27 13:28:48 +0100) are available in the git repository at: git://git.pokyli
The following changes since commit bfe3012ea4b2c973bd6ca5fa1de1adf51e1a9da4: busybox: Fix typo in syslog initscript (2019-06-27 13:28:48 +0100) are available in the git repository at: git://git.pokyli
|
By
Robert Yang
· #45759
·
|
|
[meta-anaconda][PATCH] python3-anaconda: Set the same COMPATIBLE_HOST as grub
They RDEPENDS on grub, so set the same COMPATIBLE_HOST as grub. Signed-off-by: Robert Yang <liezhi.yang@...> --- recipes-installer/anaconda/python3-anaconda_28.22.11.bb | 3 +++ .../packagegr
They RDEPENDS on grub, so set the same COMPATIBLE_HOST as grub. Signed-off-by: Robert Yang <liezhi.yang@...> --- recipes-installer/anaconda/python3-anaconda_28.22.11.bb | 3 +++ .../packagegr
|
By
Robert Yang
· #44439
·
|
|
[error-report-web][PATCH] Post/views.py: Fix for python3
Now it works for python 2 and 3. Signed-off-by: Robert Yang <liezhi.yang@...> --- Post/views.py | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/Post/vi
Now it works for python 2 and 3. Signed-off-by: Robert Yang <liezhi.yang@...> --- Post/views.py | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/Post/vi
|
By
Robert Yang
· #44308
·
|
|
[meta-security][PATCH] apparmor: Remove tab indentations in python code
Use 4 spaces to replace a tab. Fixed: apparmor_2.12.bb: python should use 4 spaces indentation, but found tabs in apparmor_2.12.bb, line 49 Signed-off-by: Robert Yang <liezhi.yang@...> --- r
Use 4 spaces to replace a tab. Fixed: apparmor_2.12.bb: python should use 4 spaces indentation, but found tabs in apparmor_2.12.bb, line 49 Signed-off-by: Robert Yang <liezhi.yang@...> --- r
|
By
Robert Yang
· #43450
·
|
|
[meta-gplv2][PATCH] coreutils: Remove tab indentations in python code
Use 4 spaces to replace a tab. Fixed: python should use 4 spaces indentation, but found tabs in coreutils_6.9.bb, line 95 Signed-off-by: Robert Yang <liezhi.yang@...> --- recipes-core/coreut
Use 4 spaces to replace a tab. Fixed: python should use 4 spaces indentation, but found tabs in coreutils_6.9.bb, line 95 Signed-off-by: Robert Yang <liezhi.yang@...> --- recipes-core/coreut
|
By
Robert Yang
· #43449
·
|
|
[prelink-cross][PATCH] src/arch-mips.c: check info->resolvetls before use its member
The info->resolvetls might be NULL according to src/prelink.c: [snip] /* Dynamic linker does not depend on any other library, all symbols resolve to themselves with the exception of SHN_UNDEF symbols
The info->resolvetls might be NULL according to src/prelink.c: [snip] /* Dynamic linker does not depend on any other library, all symbols resolve to themselves with the exception of SHN_UNDEF symbols
|
By
Robert Yang
· #42736
·
|
|
[layerindex-web][V2 PATCH 1/1] import_layer.py: add -t option for layer_type
Now the logic is: Use options.layer_type if specified, and guess if not. Default to 'M'. Note choices=['A', 'B', 'S', 'D', 'M', ''], the '' is for default='', we can't use default='M' here, otherwise
Now the logic is: Use options.layer_type if specified, and guess if not. Default to 'M'. Note choices=['A', 'B', 'S', 'D', 'M', ''], the '' is for default='', we can't use default='M' here, otherwise
|
By
Robert Yang
· #42427
·
|
|
[layerindex-web][V2 PATCH 0/1] import_layer.py: add -t option for layer_type
* V2: - Make -t option use LAYER_TYPE_CHOICES from models.py. * V1: - Initial version // Robert The following changes since commit ac32edb5bdbdef30ccf3ef49af0977246571abaa: TODO: add some more items (
* V2: - Make -t option use LAYER_TYPE_CHOICES from models.py. * V1: - Initial version // Robert The following changes since commit ac32edb5bdbdef30ccf3ef49af0977246571abaa: TODO: add some more items (
|
By
Robert Yang
· #42426
·
|
|
[layerindex-web][PATCH 1/1] import_layer.py: add -t option for layer_type
I will try to import models.py, but that may make things complicated. // Robert
I will try to import models.py, but that may make things complicated. // Robert
|
By
Robert Yang
· #42324
·
|
|
[layerindex-web][PATCH 1/1] import_layer.py: add -t option for layer_type
Hi Paul, Do you have any comments on this, please ? // Robert
Hi Paul, Do you have any comments on this, please ? // Robert
|
By
Robert Yang
· #42322
·
|
|
[prelink-cross][PATCH] src/dso.c: use ehdr.e_shstrndx as index
According to struct elf32_hd, the e_shnum is section header number, and the index is e_shstrndx, not e_shnum. This can fix segmention fault when handle libqb.so.0.18.2 from libqb_1.0.3. It fails to ha
According to struct elf32_hd, the e_shnum is section header number, and the index is e_shstrndx, not e_shnum. This can fix segmention fault when handle libqb.so.0.18.2 from libqb_1.0.3. It fails to ha
|
By
Robert Yang
· #42166
·
|
|
[layerindex-web][PATCH 1/1] import_layer.py: add -t option for layer_type
Hi Paul, I think that the easies way is move the definition of LAYER_TYPE_CHOICES to utils.py, then we can use utils.LAYER_TYPE_CHOICES in both models.py and tools/import_layer.py I've updated it in t
Hi Paul, I think that the easies way is move the definition of LAYER_TYPE_CHOICES to utils.py, then we can use utils.LAYER_TYPE_CHOICES in both models.py and tools/import_layer.py I've updated it in t
|
By
Robert Yang
· #42003
·
|
|
[layerindex-web][PATCH 1/1] import_layer.py: add -t option for layer_type
Now the logic is: Use options.layer_type if specified, guess if not, default to 'M'. Note choices=['A', 'B', 'S', 'D', 'M', ''], the '' is for default='', we can't use default='M' here, otherwise we d
Now the logic is: Use options.layer_type if specified, guess if not, default to 'M'. Note choices=['A', 'B', 'S', 'D', 'M', ''], the '' is for default='', we can't use default='M' here, otherwise we d
|
By
Robert Yang
· #41904
·
|
|
[layerindex-web][PATCH 0/1] import_layer.py: add -t option for layer_type
The following changes since commit 65d058237f96a151c913a70ba4d639c7aa0fb0b5: Dockerfile: Reduce image size by merging RUN stages together (2018-07-23 08:40:00 +0200) are available in the git repositor
The following changes since commit 65d058237f96a151c913a70ba4d639c7aa0fb0b5: Dockerfile: Reduce image size by merging RUN stages together (2018-07-23 08:40:00 +0200) are available in the git repositor
|
By
Robert Yang
· #41903
·
|
|
[layerindex-web][PATCH 4/4] update.py: check whether branch existed when nocheckout
Do I need update commit message, please ? // Robert
Do I need update commit message, please ? // Robert
|
By
Robert Yang
· #41692
·
|