OpenSDE Framework (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.5 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: target/share/initramfs.in
  5. # Copyright (C) 2007 - 2008 The OpenSDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This program is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation; version 2 of the License. A copy of the
  12. # GNU General Public License can be found in the file COPYING.
  13. # --- SDE-COPYRIGHT-NOTE-END ---
  14. # source overlay functions, to wrap overlay_apply behind initramfs_install_overlay
  15. #
  16. . "$base/lib/overlay/overlay-functions.in"
  17. # functions
  18. #
  19. # list the packages active for stage 1
  20. initramfs_list_stage1() {
  21. grep '^X .1' $base/config/$config/packages | cut -d' ' -f5
  22. }
  23. # install a package based on the flist and a given filter
  24. initramfs_install_flist() {
  25. local pkg_name="$1" sandbox="$2" rootfs="$3"
  26. local flist="$sandbox/var/adm/flists/$pkg_name"
  27. shift 3
  28. sed "$@" "$flist" | cut -f2- -d' ' |
  29. tar -C "$sandbox/" -cf- --no-recursion --files-from=- |
  30. tar -C "$rootfs" -xf-
  31. }
  32. # weak functions
  33. #
  34. initramfs_install_overlay() { overlay_apply "$@"; }
  35. # should this package be extracted by flist or not?
  36. # initramfs_install <pkg_name> <sandbox> <rootfs>
  37. initramfs_install() { true; }
  38. # what arguments should it pass to sed to filter the flist?
  39. # initramfs_install_pattern <pkg_name> <default_patterns>
  40. initramfs_install_pattern() { shift; echo "$@"; }