HomeSort by relevance Sort by last modified time
    Searched full:boot (Results 1 - 25 of 829) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/fsck_msdos/
boot.c 36 __RCSID("$NetBSD: boot.c,v 1.9 2003/07/24 19:25:46 ws Exp $");
38 "$FreeBSD: src/sbin/fsck_msdosfs/boot.c,v 1.4.28.1 2009/04/15 03:14:26 kensmith Exp $";
51 readboot(dosfs, boot)
53 struct bootblock *boot;
61 perror("could not read boot block");
66 pfatal("Invalid signature in boot block: %02x%02x", block[511], block[510]);
70 memset(boot, 0, sizeof *boot);
71 boot->ValidFat = -1;
74 boot->BytesPerSec = block[11] + (block[12] << 8)
    [all...]
check.c 62 struct bootblock boot; local
90 if (readboot(dosfs, &boot) == FSFATAL) {
96 if (skipclean && preen && checkdirty(dosfs, &boot)) {
103 if (((boot.FATsecs * boot.BytesPerSec) / 1024) > FAT_COMPARE_MAX_KB)
109 else if (boot.ValidFat < 0)
115 mod |= readfat(dosfs, &boot, boot.ValidFat >= 0 ? boot.ValidFat : 0, &fat);
122 if (!skip_fat_compare && boot.ValidFat < 0
    [all...]
fat.c 74 checkdirty(int fs, struct bootblock *boot)
80 if (boot->ClustMask != CLUST16_MASK && boot->ClustMask != CLUST32_MASK)
83 off = boot->ResSectors;
84 off *= boot->BytesPerSec;
86 buffer = malloc(boot->BytesPerSec);
97 if (read(fs, buffer, boot->BytesPerSec) != boot->BytesPerSec) {
106 if (buffer[0] != boot->Media || buffer[1] != 0xff)
108 if (boot->ClustMask == CLUST16_MASK)
    [all...]
dir.c 224 resetDosDirSection(struct bootblock *boot, struct fatEntry *fat)
230 b1 = boot->RootDirEnts * 32;
231 b2 = boot->SecPerClust * boot->BytesPerSec;
240 if (boot->flags & FAT32) {
241 if (boot->RootCl < CLUST_FIRST || boot->RootCl >= boot->NumClusters) {
243 boot->RootCl);
246 cl = fat[boot->RootCl].next
    [all...]
  /bootable/diskinstaller/
installer.conf 8 boot {
9 partition boot
10 filename /data/boot.img
init.rc 16 on boot
  /external/grub/docs/
menu.lst 2 # Sample boot menu configuration file
5 # Boot automatically after 30 secs.
8 # By default, boot the first entry.
17 kernel /boot/gnumach.gz root=hd0s1
18 module /boot/serverboot.gz
29 kernel /boot/loader.gz
34 kernel --type=netbsd /boot/knetbsd.gz
40 kernel (fd0)/boot/kernel root=hd0s3
41 module (fd0)/boot/bootstrap
46 kernel /boot/loade
    [all...]
multiboot.texi 82 This file documents Multiboot Specification, the proposal for the boot
106 * Boot sources::
107 * Boot-time configuration::
109 * Boot modules::
116 Every operating system ever created tends to have its own boot loader.
118 installing a whole new set of boot mechanisms, each with completely
119 different install-time and boot-time user interfaces. Getting multiple
122 choice of boot loaders for a particular operating system --- if the one
131 boot loader and a operating system, such that any complying boot loade
    [all...]
  /device/ti/panda/
recovery.fstab 7 /boot mtd boot
  /bootable/recovery/etc/META-INF/com/google/android/
update-script 5 format BOOT:
8 write_raw_image PACKAGE:boot.img BOOT:
  /development/tools/labpretest/nexusone/
custom_flash.sh 6 # used for flashing boot image on nexusone
  /device/samsung/manta/
recovery.fstab 6 /boot emmc /dev/block/platform/dw_mmc.0/by-name/boot
  /build/core/
dex_preopt.mk 2 # Dexpreopt on the boot jars
37 --product-dir=$(DEXPREOPT_PRODUCT_DIR) --boot-dir=$(DEXPREOPT_BOOT_JAR_DIR) \
38 --boot-jars=$(DEXPREOPT_BOOT_JARS) $(DEXPREOPT_UNIPROCESSOR) \
43 # $(1): boot jar module name
44 define _dexpreopt-boot-jar
51 @echo "Dexpreopt Boot Jar: $$@"
67 $(foreach b,$(DEXPREOPT_BOOT_JARS_MODULES),$(eval $(call _dexpreopt-boot-jar,$(b))))
69 # $(1): the rest list of boot jars
70 define _build-dexpreopt-boot-jar-dependency-pair
75 $(eval $(call _build-dexpreopt-boot-jar-dependency-pair,$(wordlist 2,999,$(1))))
    [all...]
  /sdk/emulator/mksdcard/
mksdcard.c 60 static Byte s_boot_sector [ BYTES_PER_SECTOR ]; /* boot sector */
113 boot_sector_init( Bytes boot, Bytes info, Wide disk_size, const char* label )
124 POKEB(boot, 0xeb);
125 POKEB(boot+1, 0x5a);
126 POKEB(boot+2, 0x90);
127 strcpy( (char*)boot + 3, "MSWIN4.1" );
128 POKES( boot + 0x0b, BYTES_PER_SECTOR ); /* sector size */
129 POKEB( boot + 0xd, sectors_per_cluster ); /* sectors per cluster */
130 POKES( boot + 0xe, RESERVED_SECTORS ); /* reserved sectors before first FAT */
131 POKEB( boot + 0x10, NUM_FATS ); /* number of FATs *
    [all...]
  /external/qemu/distrib/sdl-1.2.15/
README.BeOS 7 By default it is installed in /boot/develop/tools/gnupro/{bin,lib,etc.}
9 Once you install SDL, you need to copy libSDL.so to /boot/home/config/lib,
  /external/iproute2/etc/iproute2/
rt_protos 7 3 boot
  /external/yaffs2/yaffs2/direct/
dtest.c 629 yaffs_mount("/boot");
634 printf("\nDirectory look-up of /boot\n");
635 dumpDir("/boot");
647 f = yaffs_open("/boot/b1", O_RDONLY,0);
649 printf("open /boot/b1 readonly, f=%d\n",f);
651 f = yaffs_open("/boot/b1", O_CREAT,S_IREAD | S_IWRITE);
653 printf("open /boot/b1 O_CREAT, f=%d\n",f);
663 f = yaffs_open("/boot/b1", O_RDWR,0);
665 printf("open /boot/b1 O_RDWR,f=%d\n",f);
701 copy_in_a_file("/boot/yyfile","xxx")
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/os/
SystemClock_Delegate.java 42 * Returns milliseconds since boot, not counting time spent in deep sleep.
46 * @return milliseconds of non-sleep uptime since boot.
54 * Returns milliseconds since boot, including time spent in sleep.
56 * @return elapsed milliseconds since boot.
64 * Returns nanoseconds since boot, including time spent in sleep.
66 * @return elapsed nanoseconds since boot.
  /device/samsung/maguro/
recovery.fstab 8 /boot emmc /dev/block/platform/omap/omap_hsmmc.0/by-name/boot
  /device/samsung/toro/
recovery.fstab 8 /boot emmc /dev/block/platform/omap/omap_hsmmc.0/by-name/boot
  /device/samsung/toroplus/
recovery.fstab 8 /boot emmc /dev/block/platform/omap/omap_hsmmc.0/by-name/boot
  /device/samsung/tuna/
recovery.fstab 8 /boot emmc /dev/block/platform/omap/omap_hsmmc.0/by-name/boot
  /external/libpng/projects/beos/
x86-shared.txt 14 2) copy and png.h, pngconf.h somewhere; /boot/home/config/include (which
17 3) copy libpng.so to /boot/home/config/lib
x86-static.txt 14 2) copy and png.h, pngconf.h somewhere; /boot/home/config/include (which
17 3) copy libpng.a to /boot/home/config/lib
  /hardware/ti/wlan/mac80211/ti-utils/uim_rfkill/
readme.txt 8 It needs to be run at boot, Since linux flavors might require Bluetooth or
9 GPS to be turned on at boot. For this have the UIM entry in your either one

Completed in 2176 milliseconds

1 2 3 4 5 6 7 8 91011>>