Skip to content

Commit

Permalink
Add feature for openEuler
Browse files Browse the repository at this point in the history
  • Loading branch information
ccmywish committed Dec 18, 2024
1 parent 8361699 commit c15dfce
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion src/recipe/os/YUM/openEuler.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,25 @@ os_openeuler_resetsrc (char *option)
}


def_target_gsr(os_openeuler);
/**
* chsrc ls openeuler
*/
Feature_t
os_openeuler_feat (char *option)
{
Feature_t f = {0};

f.can_get = true;
f.can_reset = true;

f.cap_locally = CanNot;
f.cap_locally_explain = NULL;
f.can_english = true;
f.can_user_define = true;

f.note = NULL;

return f;
}

def_target_gsrf(os_openeuler);

0 comments on commit c15dfce

Please sign in to comment.