Home
last modified time | relevance | path

Searched refs:target (Results 1 – 23 of 23) sorted by relevance

/DragonOS-0.1.3/user/libs/libc/.cargo/
Dconfig.toml2 target = "src/arch/x86_64/x86_64-unknown-none.json"
8 [target.'cfg(target_os = "none")']
/DragonOS-0.1.3/kernel/.cargo/
Dconfig.toml2 target = "src/arch/x86_64/x86_64-unknown-none.json"
8 [target.'cfg(target_os = "none")']
/DragonOS-0.1.3/user/port/gcc/11.3.0/
Dbuild-hosted.sh43 ${gcc_path}/configure --prefix=${PREFIX} --target=x86_64-dragonos --with-sysroot=${sys_root} --disa…
44 make all-gcc all-target-libgcc -j $(nproc) || exit 1
45 make install-gcc install-target-libgcc -j $(nproc) || exit 1
/DragonOS-0.1.3/kernel/src/filesystem/fat32/
Dfat_ent.c321 void fat32_fill_shortname(struct vfs_dir_entry_t *dEntry, struct fat32_Directory_t *target, uint32_… in fat32_fill_shortname() argument
323 memset(target, 0, sizeof(struct fat32_Directory_t)); in fat32_fill_shortname()
332 target->DIR_Name[tmp_index] = dEntry->name[tmp_index]; in fat32_fill_shortname()
334 target->DIR_Name[tmp_index] = 0x20; in fat32_fill_shortname()
341 target->DIR_Name[tmp_index] = 0x20; in fat32_fill_shortname()
349 target->DIR_Name[tmp_index] = 0x20; in fat32_fill_shortname()
357 target->DIR_Name[j] = 'a'; in fat32_fill_shortname()
363 target->DIR_Attr = 0; in fat32_fill_shortname()
365 target->DIR_Attr |= ATTR_DIRECTORY; in fat32_fill_shortname()
367 target->DIR_FileSize = dEntry->dir_inode->file_size; in fat32_fill_shortname()
[all …]
Dfat_ent.h87 void fat32_fill_shortname(struct vfs_dir_entry_t *dEntry, struct fat32_Directory_t *target, uint32_…
97 void fat32_fill_longname(struct vfs_dir_entry_t *dEntry, struct fat32_LongDirectory_t *target, uint…
/DragonOS-0.1.3/user/libs/libc/
D.gitignore1 target/
/DragonOS-0.1.3/tools/
Dgrub_auto_install.sh53 ./configure --target=i386 --prefix=${grub_dir_i386_legacy} || exit 1
58 ./configure --target=i386 --with-platform=efi --prefix=${grub_dir_i386_efi} || exit 1
63 ./configure --target=x86_64 --with-platform=efi --prefix=${grub_dir_x86_64_efi} || exit 1
Dbuild_gcc_toolchain.sh120 …../${BIN_UTILS}/configure --target=$TARGET --prefix="$PREFIX" --with-sysroot --disable-nls --disab…
151 …../${GCC_FILE}/configure --target=$TARGET --prefix="$PREFIX" --disable-nls --enable-languages=c,c+…
153 make all-target-libgcc -j $(nproc) || exit 1
155 make install-target-libgcc -j $(nproc) || exit 1
D.gdbinit1 target remote localhost:1234
Dwrite_disk_image.sh115 …${GRUB_PATH_I386_EFI_INSTALL} --target=i386-efi --efi-directory=${mount_folder} --boot-directory…
117 …${GRUB_PATH_X86_64_EFI_INSTALL} --target=x86_64-efi --efi-directory=${mount_folder} --boot-direct…
121 …${GRUB_PATH_I386_LEGACY_INSTALL} --target=i386-pc --boot-directory=${boot_folder} /dev/$LOOP_DEVICE
127 …${GRUB_PATH_I386_LEGACY_INSTALL} --target=i386-pc --boot-directory=${boot_folder} /dev/$LOOP_DEVICE
DDockerfile40 rustup target add x86_64-unknown-none"
Dbootstrap.sh140 rustup target add x86_64-unknown-none
/DragonOS-0.1.3/kernel/
D.gitignore1 target/
/DragonOS-0.1.3/kernel/src/
DMakefile36 cargo +nightly build --release --target ./arch/x86_64/x86_64-unknown-none.json
41 …$(LD) -b elf64-x86-64 -z muldefs -o kernel head.o main.o $(shell find . -name "*.o") ../target/x86…
58 …$(LD) -b elf64-x86-64 -z muldefs -o kernel head.o main.o $(shell find . -name "*.o") ../target/x86…
/DragonOS-0.1.3/kernel/src/process/
Dkthread.c272 struct kthread_info_t *target = to_kthread(pcb); in kthread_stop() local
273 target->flags |= (1 << KTHREAD_SHOULD_STOP); in kthread_stop()
277 while (target->exited == false) in kthread_stop()
279 retval = target->result; in kthread_stop()
/DragonOS-0.1.3/user/port/mpc/1.2.1/
Dbuild.sh30 ${mpc_path}/configure --prefix=${PREFIX} --host=x86_64-dragonos --target=x86_64-dragonos --with-mpf…
/DragonOS-0.1.3/user/port/binutils/2.38/
Dbuild.sh38 ${binutils_path}/configure --prefix=${PREFIX} --target=x86_64-dragonos --with-sysroot=${sys_root} -…
/DragonOS-0.1.3/user/libs/libc/src/
DMakefile39 cargo +nightly build --release --target ./x86_64-unknown-none.json
/DragonOS-0.1.3/.github/workflows/
Dmakefile.yml47 …ponent add rust-src && rustup component add llvm-tools-preview && rustup target add x86_64-unknown…
/DragonOS-0.1.3/kernel/src/driver/usb/xhci/
Dxhci.c49 static int xhci_control_in(const int id, struct usb_request_packet_t *packet, void *target, const i…
51 static int xhci_control_out(const int id, struct usb_request_packet_t *packet, void *target, const …
59 static inline int xhci_get_desc(const int id, const int port_id, void *target, const uint16_t desc_…
63 void *target);
1237 static int xhci_control_in(const int id, struct usb_request_packet_t *packet, void *target, const i… in xhci_control_in() argument
1286 memcpy(target, (void *)data_buf_vaddr, packet->length); in xhci_control_in()
1311 static int xhci_control_out(const int id, struct usb_request_packet_t *packet, void *target, const … in xhci_control_out() argument
1350 memcpy(target, (void *)data_buf_vaddr, packet->length); in xhci_control_out()
1376 static inline int xhci_get_desc(const int id, const int port_id, void *target, const uint16_t desc_… in xhci_get_desc() argument
1393 count = xhci_control_in(id, &ctrl_in_packet, target, port_id, dev_desc->max_packet_size); in xhci_get_desc()
[all …]
/DragonOS-0.1.3/kernel/src/filesystem/vfs/
DVFS.c736 struct vfs_index_node_t *target = dentry->dir_inode; in vfs_unlink() local
747 spin_lock(&target->lockref.lock); in vfs_unlink()
761 spin_unlock(&target->lockref.lock); in vfs_unlink()
/DragonOS-0.1.3/kernel/src/ktest/
Dtest-idr.c327 int target = i < N / 3 ? i : max(i, 2 * (N / 3) + 1); in ktest_idr_case3() local
330 assert(nextid == target); in ktest_idr_case3()
/DragonOS-0.1.3/docs/introduction/
Dbuild_system.md128 rustup target add x86_64-unknown-none