Changeset 698f3aa in mainline
- Timestamp:
- 2006-06-07T20:48:40Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2d1a1d4
- Parents:
- 9d371cb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/config.py
r9d371cb r698f3aa 1 1 #!/usr/bin/env python 2 2 """ 3 Kernelconfiguration script3 Boot configuration script 4 4 """ 5 5 import sys … … 8 8 import commands 9 9 10 INPUT = ' kernel.config'10 INPUT = 'boot.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 everything?') == 'y': 491 491 os.execlp('make','make','clean','build') 492 492
Note:
See TracChangeset
for help on using the changeset viewer.