Changeset b3d1e11 in mainline
- Timestamp:
- 2006-06-07T20:49:09Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e209fc96
- Parents:
- b2951e2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/config.py
rb2951e2 rb3d1e11 1 1 #!/usr/bin/env python 2 2 """ 3 Kernelconfiguration script3 User space configuration script 4 4 """ 5 5 import sys … … 8 8 import commands 9 9 10 INPUT = ' kernel.config'10 INPUT = 'uspace.config' 11 11 OUTPUT = 'Makefile.config' 12 12 TMPOUTPUT = 'Makefile.config.tmp' … … 488 488 os.rename(TMPOUTPUT, OUTPUT) 489 489 490 if not defmode and dlg.yesno('Rebuild kernel?') == 'y':490 if not defmode and dlg.yesno('Rebuild user space?') == 'y': 491 491 os.execlp('make','make','clean','build') 492 492
Note:
See TracChangeset
for help on using the changeset viewer.