GCC configuration script unified for both kconfig and configsys.

Ling scripts modified for compatibility with CodeScape toolchain.
Fixed gcc warnings in kernel and kconfig.
This commit is contained in:
Serge Vakulenko
2015-09-01 19:46:57 -07:00
parent 585773955b
commit 635d8ff2f7
12 changed files with 85 additions and 135 deletions

View File

@@ -1,4 +1,4 @@
SUBDIR = elf2aout fsutil virtualmips mkrd configsys icache
SUBDIR = elf2aout fsutil virtualmips mkrd configsys kconfig icache
all install depend: ${SUBDIR}
-for i in ${SUBDIR}; do ${MAKE} -C $$i ${MFLAGS} DESTDIR=${DESTDIR} $@; done

View File

@@ -61,7 +61,6 @@ do_swap(fl)
FILE *fp;
char swapname[80];
register struct file_list *swap;
dev_t dev;
if (eq(fl->f_fn, "generic")) {
fl = fl->f_next;
@@ -95,7 +94,6 @@ do_swap(fl)
devtoname(fl->f_dumpdev));
#if 1
/* Only one swap device is supported. */
dev = swap->f_swapdev;
fprintf(fp, "dev_t\tswapdev = makedev(%d, %d);\t/* %s */\n",
major(swap->f_swapdev), minor(swap->f_swapdev),
devtoname(swap->f_swapdev));
@@ -103,7 +101,7 @@ do_swap(fl)
fprintf(fp, "\n");
fprintf(fp, "struct\tswdevt swdevt[] = {\n");
do {
dev = swap->f_swapdev;
int dev = swap->f_swapdev;
fprintf(fp, "\t{ makedev(%d, %d), %d, %d },\t/* %s */\n",
major(dev), minor(dev), swap->f_swapflag,
swap->f_swapsize, swap->f_fn);