wok annotate busybox/stuff/busybox-1.17.0-depmod.u @ rev 5877

busybox: disable mkfs.ext2, no journal support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 20 20:13:15 2010 +0200 (2010-07-20)
parents
children
rev   line source
pascal@5776 1 Accept and ignore: --unresolved-error, --quiet, --config somefile
pascal@5776 2 --- busybox-1.17.0/modutils/depmod.c
pascal@5776 3 +++ busybox-1.17.0/modutils/depmod.c
pascal@5776 4 @@ -35,7 +35,10 @@
pascal@5776 5 ARG_e = (1<<3), /* with -F, print unresolved symbols */
pascal@5776 6 ARG_F = (1<<4), /* System.map that contains the symbols */
pascal@5776 7 ARG_n = (1<<5), /* dry-run, print to stdout only */
pascal@5776 8 - ARG_r = (1<<6) /* Compat dummy. Linux Makefile uses it */
pascal@5776 9 + ARG_r = (1<<6), /* Compat dummy. Linux Makefile uses it */
pascal@5776 10 + ARG_u = (1<<7), /* unresolved-error: ignored */
pascal@5776 11 + ARG_q = (1<<8), /* quiet: ignored */
pascal@5776 12 + ARG_C = (1<<9) /* config: ignored */
pascal@5776 13 };
pascal@5776 14
pascal@5776 15 static int FAST_FUNC parse_module(const char *fname, struct stat *sb UNUSED_PARAM,
pascal@5776 16 @@ -143,7 +146,7 @@
pascal@5776 17 struct utsname uts;
pascal@5776 18 int tmp;
pascal@5776 19
pascal@5776 20 - getopt32(argv, "aAb:eF:nr", &moddir_base, NULL);
pascal@5776 21 + getopt32(argv, "aAb:eF:nruqC:", &moddir_base, NULL, NULL);
pascal@5776 22 argv += optind;
pascal@5776 23
pascal@5776 24 /* goto modules location */
pascal@5776 25