1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  | DESCRIPTION = "A XFCE minimal demo image." 
 |    
 |  IMAGE_INSTALL = "packagegroup-core-boot \ 
 |      packagegroup-core-x11 \ 
 |      packagegroup-xfce-base \ 
 |      kernel-modules \ 
 |  " 
 |    
 |  inherit features_check 
 |  REQUIRED_DISTRO_FEATURES = "x11" 
 |    
 |  IMAGE_LINGUAS ?= " " 
 |    
 |  LICENSE = "MIT" 
 |    
 |  export IMAGE_BASENAME = "core-image-minimal-xfce" 
 |    
 |  inherit core-image 
 |    
 |  SYSTEMD_DEFAULT_TARGET = "graphical.target" 
 |  
  |