/external/e2fsprogs/debian/ |
e2fsprogs.postinst | 6 if [ -x /usr/sbin/update-initramfs -a \ 7 -e /etc/initramfs-tools/initramfs.conf ]; then 8 update-initramfs -u
|
/external/syslinux/com32/include/syslinux/ |
linux.h | 42 /* A chunk of an initramfs. These are kept as a doubly-linked 47 struct initramfs { struct 48 struct initramfs *prev, *next; 161 struct initramfs *initramfs, 165 /* Initramfs manipulation functions */ 167 struct initramfs *initramfs_init(void); 168 int initramfs_add_data(struct initramfs *ihead, const void *data, 170 int initramfs_mknod(struct initramfs *ihead, const char *filename, 173 int initramfs_add_file(struct initramfs *ihead, const void *data [all...] |
firmware.h | 49 struct initramfs; 61 int (*boot_linux)(void *, size_t, struct initramfs *,
|
/external/syslinux/com32/lib/syslinux/ |
initramfs.c | 29 * initramfs.c 31 * Utility functions for initramfs manipulation 37 struct initramfs *initramfs_init(void) 39 struct initramfs *ir; 49 int initramfs_add_data(struct initramfs *ihead, const void *data, 52 struct initramfs *in;
|
initramfs_archive.c | 31 * Utility function to load an initramfs archive. 38 int initramfs_load_archive(struct initramfs *ihead, const char *filename)
|
initramfs_loadfile.c | 31 * Load a single file into an initramfs image. 37 int initramfs_load_file(struct initramfs *ihead, const char *src_filename,
|
initramfs_file.c | 103 * and add it to an initramfs chain 105 int initramfs_mknod(struct initramfs *ihead, const char *filename, 146 * Add a file given data in memory to an initramfs chain. This 150 int initramfs_add_file(struct initramfs *ihead, const void *data, 161 int initramfs_add_trailer(struct initramfs *ihead)
|
load_linux.c | 92 /* Create the appropriate mappings for the initramfs */ 95 struct initramfs *initramfs, addr_t addr) 97 struct initramfs *ip; 100 for (ip = initramfs->next; ip->len; ip = ip->next) { 153 struct initramfs *initramfs, 275 /* Get the size of the initramfs, if there is one */ 276 irf_size = initramfs_size(initramfs); 383 /* Figure out the size of the initramfs, and where to put it [all...] |
/external/syslinux/com32/modules/ |
linux.c | 36 * /dhcpinfo.dat in the initramfs. 57 typedef int f_ldinitramfs(struct initramfs *, char *); 142 static int ldinitramfs_raw(struct initramfs *initramfs, char *fname) 144 return initramfs_load_archive(initramfs, fname); 148 static int ldinitramfs_cpio(struct initramfs *initramfs, char *fname) 176 * parent directories if the desired path contains them, add to initramfs 178 rc = initramfs_load_file(initramfs, fname, target_fname, do_mkdir, 0755); 188 static int process_initramfs_args(char *arg, struct initramfs *initramfs 257 struct initramfs *initramfs; local [all...] |
/external/syslinux/com32/elflink/ldlinux/ |
kernel.c | 19 struct initramfs *initramfs = NULL; local 75 /* Find and load initramfs */ 78 /* Initialize the initramfs chain */ 79 initramfs = initramfs_init(); 80 if (!initramfs) 108 if (initramfs_load_archive(initramfs, initrd_name)) { 124 syslinux_boot_linux(kernel_data, kernel_len, initramfs, NULL, cmdline);
|
/external/libcap/kdebug/ |
Makefile | 14 rm -f fs.conf initramfs.img
|
test-kernel.sh | 60 $KBASE/usr/gen_init_cpio fs.conf | gzip -9 > initramfs.img 66 -initrd initramfs.img \
|
/external/syslinux/com32/lua/src/ |
syslinux.c | 187 struct initramfs *initramfs; local 228 initramfs = initramfs_init(); 229 if (!initramfs) 240 if (initramfs_load_archive(initramfs, initrd)) { 250 ret = syslinux_boot_linux(kernel_data, kernel_len, initramfs, NULL, newcmdline); 329 struct initramfs *initramfs; local 331 initramfs = initramfs_init(); 332 if (!initramfs) 344 struct initramfs *initramfs = luaL_checkudata(L, 1, SYSLINUX_FILE); local 356 struct initramfs *initramfs = luaL_checkudata(L, 1, SYSLINUX_FILE); local 368 struct initramfs *initramfs = luaL_checkudata(L, 2, SYSLINUX_FILE); local [all...] |
/hardware/intel/bootstub/ |
bootstub.c | 154 u8 *initramfs, *ptr; local 171 initramfs = (u8 *)aosp->ramdisk_addr; 184 initramfs = (u8 *)BZIMAGE_OFFSET + *(u32 *)BZIMAGE_SIZE_OFFSET; 192 if (*initramfs) { 193 bs_printk("Relocating initramfs to high memory ...\n"); 194 memcpy((u8*)bp->hdr.ramdisk_image, initramfs, bp->hdr.ramdisk_size); 196 bs_printk("Won't relocate initramfs, are you in SLE?\n"); 199 bp->hdr.ramdisk_image = (u32) initramfs;
|
/external/syslinux/efi/ |
main.c | 883 * ramdisk image. Having no initramfs is not an error. 886 struct initramfs *initramfs) 889 struct initramfs *ip; 898 * Figure out the size of the initramfs, and where to put it. 900 * <= hdr->initrd_addr_max, which fits the entire initramfs. 902 irf_size = initramfs_size(initramfs); /* Handles initramfs == NULL */ 913 printf("Failed to allocate initramfs memory, bailing out\n"); 920 /* Copy initramfs into allocated memory * [all...] |
/external/syslinux/mk/ |
lib.mk | 162 syslinux/load_linux.o syslinux/initramfs.o \
|
/external/syslinux/com32/gfxboot/ |
gfxboot.c | 879 struct initramfs *initrd = NULL;
|