Changeset 487
- Timestamp:
- 10/05/07 21:49:12 (4 years ago)
- Location:
- trunk/openmct
- Files:
-
- 1 added
- 2 modified
-
Rules (modified) (1 diff)
-
packages/system/linux/Makefile (modified) (1 diff)
-
scripts/depmod.pl (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/openmct/Rules
r485 r487 97 97 REMOVESVN=$(SCRIPTDIR)/remove-svn.sh 98 98 CLEANUPROOT=$(SCRIPTDIR)/cleanup-root.sh 99 DEPMOD=$(SCRIPTDIR)/depmod.pl 99 100 100 101 # tar options -
trunk/openmct/packages/system/linux/Makefile
r476 r487 4 4 MAKEARGS= CROSS_COMPILE=$(OPENMCT_CROSS_COMPILE) vmlinux modules 5 5 6 INSTALL= $(RM) $(SRCDIR)/System.map ; \ 7 $(GZIP) -9 -c $(SRCDIR)/vmlinux.bin >$(OUTPUTDIR)/vmlinux.bin.gz ; \ 8 cd $(SRCDIR) && make INSTALL_MOD_PATH=$(NEWROOTDIR) modules_install 6 INSTALL= $(GZIP) -9 -c $(SRCDIR)/vmlinux.bin >$(OUTPUTDIR)/vmlinux.bin.gz && \ 7 cd $(SRCDIR) && make DEPMOD=/bin/true INSTALL_MOD_PATH=$(NEWROOTDIR) modules_install && \ 8 $(DEPMOD) -b $(NEWROOTDIR)/lib/modules/*/ -k vmlinux \ 9 9 10 10 11 include $(OPENMCT_DEVEL_PREFIX)Rules
