1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
  | # 
 |  # Copyright (C) 2019 Konsulko Group 
 |  # 
 |    
 |  SUMMARY = "Full-featured set of base utils" 
 |  DESCRIPTION = "Package group bringing in packages needed to provide much of the base utils type functionality found in busybox" 
 |    
 |  PACKAGE_ARCH = "${MACHINE_ARCH}" 
 |    
 |  inherit packagegroup 
 |    
 |  VIRTUAL-RUNTIME_vim ?= "vim-tiny" 
 |    
 |  PACKAGE_ARCH = "${MACHINE_ARCH}" 
 |    
 |  RDEPENDS:${PN} = "\ 
 |      base-passwd \ 
 |      bash \ 
 |      bind-utils \ 
 |      bzip2 \ 
 |      coreutils \ 
 |      cpio \ 
 |      ${@bb.utils.contains("DISTRO_FEATURES", "systemd", "", "debianutils-run-parts", d)} \ 
 |      dhcpcd \ 
 |      ${@bb.utils.contains("DISTRO_FEATURES", "systemd", "", "kea", d)} \ 
 |      diffutils \ 
 |      ${@bb.utils.contains("DISTRO_FEATURES", "systemd", "", "dpkg-start-stop", d)} \ 
 |      e2fsprogs \ 
 |      ed \ 
 |      file \ 
 |      findutils \ 
 |      gawk \ 
 |      grep \ 
 |      gzip \ 
 |      ${@bb.utils.contains("DISTRO_FEATURES", "systemd", "", "ifupdown", d)} \ 
 |      inetutils \ 
 |      inetutils-ping \ 
 |      inetutils-telnet \ 
 |      inetutils-tftp \ 
 |      inetutils-traceroute \ 
 |      iproute2 \ 
 |      ${@bb.utils.contains("MACHINE_FEATURES", "keyboard", "kbd", "", d)} \ 
 |      kmod \ 
 |      less \ 
 |      ncurses-tools \ 
 |      net-tools \ 
 |      parted \ 
 |      patch \ 
 |      procps \ 
 |      psmisc \ 
 |      sed \ 
 |      shadow-base \ 
 |      tar \ 
 |      time \ 
 |      unzip \ 
 |      util-linux \ 
 |      ${VIRTUAL-RUNTIME_vim} \ 
 |      wget \ 
 |      which \ 
 |      xz \ 
 |      " 
 |  
  |