Changeset 4285f384 in mainline for uspace/app/sysinst
- Timestamp:
- 2025-02-25T20:25:43Z (8 months ago)
- Branches:
- master
- Children:
- d30e067, f35749e
- Parents:
- d231a54
- Location:
- uspace/app/sysinst
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sysinst/rdimg.c
rd231a54 r4285f384 1 1 /* 2 * Copyright (c) 20 18Jiri Svoboda2 * Copyright (c) 2025 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 191 191 192 192 printf("rd_img_close: eject RAM disk volume\n"); 193 rc = vol_part_eject(vol, rd_svcid );193 rc = vol_part_eject(vol, rd_svcid, vef_none); 194 194 if (rc != EOK) { 195 195 printf("Error ejecting RAM disk volume.\n"); -
uspace/app/sysinst/sysinst.c
rd231a54 r4285f384 1 1 /* 2 * Copyright (c) 202 4Jiri Svoboda2 * Copyright (c) 2025 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 475 475 } 476 476 477 rc = vol_part_eject(vol, part_id );477 rc = vol_part_eject(vol, part_id, vef_physical); 478 478 if (rc != EOK) { 479 479 printf("Error ejecting volume.\n");
Note:
See TracChangeset
for help on using the changeset viewer.