- Timestamp:
- Aug 5, 2020 8:36:30 AM (4 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/UnattendedTemplates/debian_postinstall.sh
r84875 r85609 212 212 MY_IGNORE_EXITCODE=2 # returned if modules already loaded and reboot required. 213 213 log_command_in_target /bin/bash "${MY_CHROOT_CDROM}/vboxadditions/VBoxLinuxAdditions.run" --nox11 214 log_command_in_target /bin/bash -c "udevadm con strol --reload-rules" # GAs doesn't yet do this.214 log_command_in_target /bin/bash -c "udevadm control --reload-rules" # GAs doesn't yet do this. 215 215 log_command_in_target /bin/bash -c "udevadm trigger" # (ditto) 216 216 MY_IGNORE_EXITCODE= -
trunk/src/VBox/Main/UnattendedTemplates/redhat_postinstall.sh
r84875 r85609 192 192 MY_IGNORE_EXITCODE=2 # returned if modules already loaded and reboot required. 193 193 log_command_in_target /bin/bash "${MY_CHROOT_CDROM}/vboxadditions/VBoxLinuxAdditions.run" --nox11 194 log_command_in_target /bin/bash -c "udevadm con strol --reload-rules" # GAs doesn't yet do this.194 log_command_in_target /bin/bash -c "udevadm control --reload-rules" # GAs doesn't yet do this. 195 195 log_command_in_target /bin/bash -c "udevadm trigger" # (ditto) 196 196 MY_IGNORE_EXITCODE= -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3kit.h
r82968 r85609 2025 2025 * 2026 2026 * @returns Pointer to a chunk on success, NULL if we're out of chunks. 2027 * @param pSlabCtl The slab con strol structure to allocate from.2027 * @param pSlabCtl The slab control structure to allocate from. 2028 2028 */ 2029 2029 BS3_CMN_PROTO_STUB(void BS3_FAR *, Bs3SlabAlloc,(PBS3SLABCTL pSlabCtl)); … … 2034 2034 * @returns Pointer to the request number of chunks on success, NULL if we're 2035 2035 * out of chunks. 2036 * @param pSlabCtl The slab con strol structure to allocate from.2036 * @param pSlabCtl The slab control structure to allocate from. 2037 2037 * @param cChunks The number of contiguous chunks we want. 2038 2038 * @param fFlags Flags, see BS3_SLAB_ALLOC_F_XXX … … 2045 2045 * @returns Number of chunks actually freed. When correctly used, this will 2046 2046 * match the @a cChunks parameter, of course. 2047 * @param pSlabCtl The slab con strol structure to free from.2047 * @param pSlabCtl The slab control structure to free from. 2048 2048 * @param uFlatChunkPtr The flat address of the chunks to free. 2049 2049 * @param cChunks The number of contiguous chunks to free.
Note:
See TracChangeset
for help on using the changeset viewer.