Advertisement
Guest User

Untitled

a guest
Jul 31st, 2014
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. commit 08efd65c2b67fa770e80fc1c469e803699b9757c
  2. Author: Paul Gortmaker <paul.gortmaker@windriver.com>
  3. Date: Thu Jul 31 11:04:24 2014 -0400
  4.  
  5. util-linux: create an all encompassing package group
  6.  
  7. Currently util-linux is fragmented into lots of small chunks,
  8. and if one is looking to avoid using busybox wholesale, there
  9. is currently no easy way to say "I want all of it". Here we
  10. create a packagegroup for all of the util-linux chunks, so
  11. that it need not be duplicated by everyone wanting the same
  12. overall goal of removing busybox.
  13.  
  14. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
  15.  
  16. diff --git a/recipes-core/packagegroups/packagegroup-util-linux.bb b/recipes-core/packagegroups/packagegroup-util-linux.bb
  17. new file mode 100644
  18. index 000000000000..54151502b176
  19. --- /dev/null
  20. +++ b/recipes-core/packagegroups/packagegroup-util-linux.bb
  21. @@ -0,0 +1,69 @@
  22. +#
  23. +# Copyright (C) 2014 Wind River
  24. +#
  25. +
  26. +SUMMARY = "util-linux Packages"
  27. +DESCRIPTION = "Packages created from util-linux"
  28. +PR = "r0"
  29. +LICENSE = "MIT"
  30. +
  31. +inherit packagegroup
  32. +
  33. +PACKAGES = "\
  34. + packagegroup-util-linux \
  35. + packagegroup-util-linux-block \
  36. + packagegroup-util-linux-console \
  37. + packagegroup-util-linux-uid \
  38. + packagegroup-util-linux-misc \
  39. + packagegroup-util-linux-partition \
  40. + "
  41. +
  42. +RDEPENDS_packagegroup-util-linux = "\
  43. + packagegroup-util-linux-block \
  44. + packagegroup-util-linux-console \
  45. + packagegroup-util-linux-uid \
  46. + packagegroup-util-linux-misc \
  47. + packagegroup-util-linux-partition \
  48. + "
  49. +
  50. +RDEPENDS_packagegroup-util-linux-partition = "\
  51. + util-linux-fdisk \
  52. + util-linux-cfdisk \
  53. + util-linux-sfdisk \
  54. + util-linux-partx \
  55. + "
  56. +
  57. +RDEPENDS_packagegroup-util-linux-console = "\
  58. + util-linux-agetty \
  59. + util-linux-reset \
  60. + "
  61. +
  62. +RDEPENDS_packagegroup-util-linux-block = " \
  63. + util-linux-mkfs \
  64. + util-linux-mkfs.cramfs \
  65. + util-linux-fsck.cramfs \
  66. + util-linux-fstrim \
  67. + util-linux-fsck \
  68. + util-linux-blkid \
  69. + util-linux-libblkid \
  70. + util-linux-umount \
  71. + util-linux-mount \
  72. + util-linux-libmount \
  73. + util-linux-swaponoff \
  74. + "
  75. +
  76. +RDEPENDS_packagegroup-util-linux-uid = "\
  77. + util-linux-libuuid \
  78. + util-linux-uuidd \
  79. + util-linux-uuidgen \
  80. + util-linux-findfs \
  81. + "
  82. +
  83. +RDEPENDS_packagegroup-util-linux-misc = "\
  84. + util-linux-losetup \
  85. + util-linux-readprofile \
  86. + util-linux-lscpu \
  87. + util-linux-mcookie \
  88. + util-linux-bash-completion \
  89. + util-linux-hwclock \
  90. + "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement