Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: YoeDistro/yoe-distro
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4e26584fdedeff0bf24d4b86d87a6eb825f2ea77
Choose a base ref
...
head repository: YoeDistro/yoe-distro
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8e309f40e68a31a158b3c52fa9ea7b3befaa3b21
Choose a head ref
  • 4 commits
  • 4 files changed
  • 2 contributors

Commits on May 2, 2020

  1. yoe-release-image.bb: Add new image

    busybox wget lacks TLS handshake, since we use feeds its better to have
    secure support in wget, it increases the size a bit but thats perhaps
    compromise we are willing to make.
    
    Fixes #356
    
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    kraj committed May 2, 2020
    Copy the full SHA
    5b41c71 View commit details
  2. yoe-sdk-image.bb: remove go SDK for RISCV32

    Golang port for rv32 is still not available
    
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    kraj committed May 2, 2020
    Copy the full SHA
    5cd4154 View commit details

Commits on May 3, 2020

  1. yoe.inc: Mask webkitgtk from oe-core

    We use meta-webkit which always have more update version
    
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    kraj committed May 3, 2020
    Copy the full SHA
    8e911fb View commit details

Commits on May 4, 2020

  1. Merge pull request #70 from YoeDistro/yoe/mut

    yoe-simple-image.bb: Add wget to image
    cbrake authored May 4, 2020
    Copy the full SHA
    8e309f4 View commit details
Showing with 13 additions and 1 deletion.
  1. +3 −0 conf/distro/yoe.inc
  2. +8 −0 recipes-core/images/yoe-release-image.bb
  3. +1 −0 recipes-core/images/yoe-sdk-image.bb
  4. +1 −1 recipes-core/images/yoe-simple-image.bb
3 changes: 3 additions & 0 deletions conf/distro/yoe.inc
Original file line number Diff line number Diff line change
@@ -170,3 +170,6 @@ PNBLACKLIST[bigbuckbunny-720p] = "big and doesn't really need to be tested so mu
PNBLACKLIST[tearsofsteel-1080p] = "big and doesn't really need to be tested so much"
RDEPENDS_packagegroup-meta-multimedia_remove_pn-packagegroup-meta-multimedia = "bigbuckbunny-1080p bigbuckbunny-480p bigbuckbunny-720p tearsofsteel-1080p"
PNBLACKLIST[build-appliance-image] = "tries to include whole downloads directory in /home/builder/poky :/"

# mask out the old webkitgtk recipes from OE-core
BBMASK .= "recipes-sato/webkit/webkitgtk"
8 changes: 8 additions & 0 deletions recipes-core/images/yoe-release-image.bb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Yoe base image for using feeds

require yoe-simple-image.bb

IMAGE_INSTALL += "\
wget \
"
export IMAGE_BASENAME = "yoe-release-image"
1 change: 1 addition & 0 deletions recipes-core/images/yoe-sdk-image.bb
Original file line number Diff line number Diff line change
@@ -6,5 +6,6 @@ require kiosk.inc
IMAGE_FEATURES += "tools-sdk dev-pkgs"

IMAGE_INSTALL += "packagegroup-go-sdk-target packagegroup-core-buildessential"
IMAGE_INSTALL_remove_riscv32 = "packagegroup-go-sdk-target"

export IMAGE_BASENAME = "yoe-sdk-image"
2 changes: 1 addition & 1 deletion recipes-core/images/yoe-simple-image.bb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Yoe sample image
# Yoe base starter image

require recipes-core/images/core-image-base.bb
require updater.inc