Home
last modified time | relevance | path

Searched refs:extra (Results 1 – 15 of 15) sorted by relevance

/busybox-1.35.0/scripts/
DMakefile.lib2 extra-y += $(EXTRA_TARGETS)
55 …-y)), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))),$($(m:.o=-objs)) $($(m:.o=-y)),$(m))) $(extra-y)
60 extra-y := $(addprefix $(obj)/,$(extra-y))
DMakefile.clean43 __clean-files := $(extra-y) $(EXTRA_TARGETS) $(always) \
DMakefile.build88 __build: $(if $(KBUILD_BUILTIN),$(builtin-target) $(lib-target) $(extra-y)) \
236 targets += $(extra-y) $(MAKECMDGOALS) $(always)
/busybox-1.35.0/applets/
Dusage_compressed31 # "grep -v '^ '" is for toybox's od bug: od -b prints some extra lines:
/busybox-1.35.0/coreutils/
Dtail.c308 int extra = (buf[nread-1] != '\n'); in tail_main() local
311 k = newlines_seen + newlines_in_buf + extra - count; in tail_main()
321 newlines_seen = count - extra; in tail_main()
/busybox-1.35.0/examples/bootfloppy/
Dmkrootfs.sh78 make CC=$BASE_DIR/$UCLIBC_DIR/extra/gcc-uClibc/i386-uclibc-gcc
/busybox-1.35.0/util-linux/
Dmkfs_ext2.txt47 Required extra isize: 28
48 Desired extra isize: 28
/busybox-1.35.0/archival/
Dgzip.c1639 int extra; /* number of extra bits to send */ in compress_block() local
1652 extra = extra_lbits[code]; in compress_block()
1653 if (extra != 0) { in compress_block()
1655 send_bits(lc, extra); /* send the extra length bits */ in compress_block()
1663 extra = extra_dbits[code]; in compress_block()
1664 if (extra != 0) { in compress_block()
1666 send_bits(dist, extra); /* send the extra distance bits */ in compress_block()
/busybox-1.35.0/
DINSTALL24 extra configuration to use. Then enable "standalone shell" feature:
DMakefile1113 install-dir := $(if $(INSTALL_MOD_DIR),$(INSTALL_MOD_DIR),extra)
/busybox-1.35.0/modutils/
Dmodutils-24.c2274 size_t extra = sizeof SYMBOL_PREFIX; in add_symbols_from() local
2275 size_t name_size = strlen(name) + extra; in add_symbols_from()
2281 strcpy(name_buf + extra - 1, name); in add_symbols_from()
/busybox-1.35.0/docs/
Dstyle-guide.txt637 Organization and readability are improved by putting extra newlines around
/busybox-1.35.0/scripts/kconfig/
Dlex.zconf.c_shipped897 * we don't want an extra ';' after the "return" because that will cause
Dzconf.tab.c_shipped1179 conditional around just the two extra args, but that might
/busybox-1.35.0/shell/
Dash.c2658 size_t extra = strchrnul(p, ':') - p; in padvance_magic() local
2663 len += extra; in padvance_magic()
2665 p += extra; in padvance_magic()