search for: default_list

Displaying 5 results from an estimated 5 matches for "default_list".

2006 Apr 09
1
[PATCH] kbuild: rebuild initramfs if included files changes
...t 0 ]; do + arg="$1" + shift + case "$arg" in + "-u") # map $1 to uid=0 (root) + root_uid="$1" + shift + ;; + "-g") # map $1 to gid=0 (root) + root_gid="$1" + shift + ;; + "-d") # display default initramfs list + default_list="$arg" + ${file_list}default_initramfs + ;; + "-h") + usage + exit 0 + ;; + *) + case "$arg" in + "-"*) + unknown_option + ;; + *) # input file/dir - process it + input_file "$arg" "$#" + ;; + esac +...
2006 Apr 15
1
[PATCH] klibc: fix gen_initramfs_init.sh when using -d
...eader} ]; then + ${dep_list}header "$1" + fi + print_header=y + input_file "$1" "$2" +} + prog=$0 root_uid=0 root_gid=0 @@ -245,21 +251,17 @@ while [ $# -gt 0 ]; do root_gid="$1" shift ;; - "-d") # display default initramfs list - default_list="$arg" - ${dep_list}default_initramfs - ;; "-h") usage exit 0 ;; *) case "$arg" in - "-"*) - unknown_option + "-d") process_file "$arg" "$#" + ;; + "-"*) unknown_option ;...
2006 Jun 26
0
[klibc 08/43] klibc: default initramfs content stored in usr/initramfs.default
...eader} ]; then + ${dep_list}header "$1" + fi + print_header=y + input_file "$1" "$2" +} + prog=$0 root_uid=0 root_gid=0 @@ -249,27 +236,29 @@ while [ $# -gt 0 ]; do root_gid="$1" shift ;; - "-d") # display default initramfs list - default_list="$arg" - ${dep_list}default_initramfs - ;; "-h") usage exit 0 ;; *) case "$arg" in - "-"*) - unknown_option + "-"*) unknown_option ;; - *) # input file/dir - process it - input_file "$arg" &...
2006 Apr 08
0
[WIP] rebuild initramfs when content changes
...;$1" cpio_list="$(mktemp /tmp/cpiolist.XXXXXX)" shift ;; esac while [ $# -gt 0 ]; do arg="$1" shift case "$arg" in "-u") root_uid="$1" shift ;; "-g") root_gid="$1" shift ;; "-d") default_list="$arg" ${file_list}default_initramfs ;; "-h") usage exit 0 ;; *) case "$arg" in "-"*) unknown_option ;; *) input_file "$arg" "$#" input_seen=y ;; esac ;; esac done [ -z ${input...
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: