Advertisement
Guest User

Untitled

a guest
Feb 6th, 2024
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. LICENSE = "CLOSED"
  2. inherit systemd
  3.  
  4. SYSTEMD_AUTO_ENABLE = "enable"
  5. SYSTEMD_SERVICE_${PN} = "nvmepart.service"
  6.  
  7. SRC_URI:append = " file://nvmepart.service"
  8.  
  9.  
  10. do_install:append () {
  11.  
  12. install -d ${D}${systemd_unitdir}/system
  13. install -m 0644 ${WORKDIR}/nvmepart.service ${D}/${systemd_unitdir}/system
  14. }
  15.  
  16. FILES:${PN} = "${systemd_unitdir}/system/nvmepart.service"
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement