search for: cmd_initf

Displaying 7 results from an estimated 7 matches for "cmd_initf".

Did you mean: cmd_initfs
2006 Apr 17
0
[PATCH] klibc: rebuild cpio image when content changes
...n initramfs and to detect if any files are added/removed. -# Removed files are identified by directory timestamp being updated -# The dependency list is generated by gen_initramfs.sh -l -ifneq ($(wildcard $(obj)/.initramfs_data.cpio.gz.d),) - include $(obj)/.initramfs_data.cpio.gz.d -endif quiet_cmd_initfs = GEN $@ - cmd_initfs = $(initramfs) -o $@ $(ramfs-args) $(ramfs-input) + cmd_initfs = $(ginitramfs) -o $@ $(ramfs-args) $(ramfs-input) targets := initramfs_data.cpio.gz -$(deps_initramfs): klibcdirs # We rebuild initramfs_data.cpio.gz if: # 1) Any included file is newer then in...
2006 Apr 09
0
[PATCH] kbuild: fix usr/Kbuild to use new usr/gen_initramfs.sh
...nitramfs.sh +ramfs-input = $(if $(filter-out "",$(CONFIG_INITRAMFS_SOURCE)), \ + $(CONFIG_INITRAMFS_SOURCE),-d) +ramfs-filelist = $(shell $(initramfs) -l $(ramfs-input)) -$(obj)/initramfs_data.cpio.gz: $(initramfs_data_cpio) FORCE - $(call if_changed,gzip) +quiet_cmd_initfs = GEN $@ + cmd_initfs = \ + $(initramfs) -o $@ \ + $(if $(CONFIG_INITRAMFS_ROOT_UID), -u $(CONFIG_INITRAMFS_ROOT_UID)) \ + $(if $(CONFIG_INITRAMFS_ROOT_GID), -g $(CONFIG_INITRAMFS_ROOT_GID)) \ + $(ramfs-input) -targets += initramfs_data.cpio.gz +targets := initramfs_data.cpio.gz +$(obj)...
2006 Apr 17
0
[PATCH] klibc: default initramfs content stored in usr/initramfs.default
...ramfs-def)) ramfs-args := \ $(if $(CONFIG_INITRAMFS_ROOT_UID), -u $(CONFIG_INITRAMFS_ROOT_UID)) \ - $(if $(CONFIG_INITRAMFS_ROOT_GID), -g $(CONFIG_INITRAMFS_ROOT_GID)) \ - $(ramfs-input) + $(if $(CONFIG_INITRAMFS_ROOT_GID), -g $(CONFIG_INITRAMFS_ROOT_GID)) quiet_cmd_initfs = GEN $@ cmd_initfs = $(ginitramfs) -o $@ $(ramfs-args) $(ramfs-input) diff --git a/usr/initramfs.default b/usr/initramfs.default new file mode 100644 index 0000000..d23437a --- /dev/null +++ b/usr/initramfs.default @@ -0,0 +1,9 @@ +##################### +# This is a very simple, defaul...
2006 Apr 08
0
[WIP] rebuild initramfs when content changes
...files are newer than the cpio archive) initramfs := $(CONFIG_SHELL) $(srctree)/$(src)/gen_initramfs ramfs-input = $(if $(filter-out "",$(CONFIG_INITRAMFS_SOURCE)), \ $(CONFIG_INITRAMFS_SOURCE),-d) ramfs-filelist = $(shell $(initramfs) -l $(ramfs-input)) quiet_cmd_initfs = GEN $@ cmd_initfs = \ $(initramfs) -o $@ \ $(if $(CONFIG_INITRAMFS_ROOT_UID), -u $(CONFIG_INITRAMFS_ROOT_UID)) \ $(if $(CONFIG_INITRAMFS_ROOT_GID), -g $(CONFIG_INITRAMFS_ROOT_GID)) \ $(ramfs-input) targets := initramfs_data.cpio.gz $(obj)/initramfs_data.cpio.gz: $(ramfs-filelist)...
2006 Jun 26
0
[klibc 19/43] klibc basic build infrastructure
...put := $(shell echo $(CONFIG_INITRAMFS_SOURCE)) +ramfs-input := $(if $(ramfs-input), $(ramfs-input), $(ramfs-def)) + +ramfs-args := \ + $(if $(CONFIG_INITRAMFS_ROOT_UID), -u $(CONFIG_INITRAMFS_ROOT_UID)) \ + $(if $(CONFIG_INITRAMFS_ROOT_GID), -g $(CONFIG_INITRAMFS_ROOT_GID)) + +quiet_cmd_initfs = GEN $@ + cmd_initfs = $(ginitramfs) -o $@ $(ramfs-args) $(ramfs-input) + +targets := initramfs_data.cpio.gz +# We rebuild initramfs_data.cpio.gz if: +# 1) Any included file is newer then initramfs_data.cpio.gz +# 2) There are changes in which files are included (added or deleted) +# 3)...
2006 Apr 09
1
[PATCH] kbuild: rebuild initramfs if included files changes
...newer than the cpio archive) +initramfs := $(CONFIG_SHELL) $(srctree)/$(src)/gen_initramfs.sh +ramfs-input = $(if $(filter-out "",$(CONFIG_INITRAMFS_SOURCE)), \ + $(CONFIG_INITRAMFS_SOURCE),-d) +ramfs-filelist = $(shell $(initramfs) -l $(ramfs-input)) + +quiet_cmd_initfs = GEN $@ + cmd_initfs = \ + $(initramfs) -o $@ \ + $(if $(CONFIG_INITRAMFS_ROOT_UID), -u $(CONFIG_INITRAMFS_ROOT_UID)) \ + $(if $(CONFIG_INITRAMFS_ROOT_GID), -g $(CONFIG_INITRAMFS_ROOT_GID)) \ + $(ramfs-input) + +targets := initramfs_data.cpio.gz +$(obj)/initramfs_data.cpio.gz: $(ramfs-fi...
2006 Jun 28
35
[klibc 00/31] klibc as a historyless patchset (updated and reorganized)
I have updated the klibc patchset based on feedback received. In particular, the patchset has been reorganized so as not to break git-bisect. Additionally, this updates the patch base to 2.6.17-git12 (d38b69689c349f35502b92e20dafb30c62d49d63) and klibc 1.4.8; the main difference on the klibc side is removal of obsolete code. This is also available as a git tree at: