diff options
author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-09-26 22:12:51 +0000 |
---|---|---|
committer | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-09-26 22:12:51 +0000 |
commit | 6acce2cf1fc2716f030d4939c8b06c6dff4e6543 (patch) | |
tree | bd90bd2e2e5a7a9aecb69c61ecc290f846f999a8 /target/linux | |
parent | 621b0743d516c35a9a56062a306ef47b8abb8daf (diff) | |
download | buildroot-novena-6acce2cf1fc2716f030d4939c8b06c6dff4e6543.tar.gz buildroot-novena-6acce2cf1fc2716f030d4939c8b06c6dff4e6543.zip |
Add more management to linux and buysbox packages
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/Makefile.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/target/linux/Makefile.in b/target/linux/Makefile.in index 62ce86a68..91132f145 100644 --- a/target/linux/Makefile.in +++ b/target/linux/Makefile.in @@ -209,6 +209,11 @@ linux26-menuconfig: $(LINUX26_DIR)/.patched host-sed $(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) menuconfig -[ -f $(LINUX26_DIR)/.config ] && touch $(LINUX26_DIR)/.configured +linux26-xconfig: $(LINUX26_DIR)/.patched host-sed + [ -f $(LINUX26_DIR)/.config ] || cp $(LINUX26_KCONFIG) $(LINUX26_DIR)/.config + $(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) xconfig + -[ -f $(LINUX26_DIR)/.config ] && touch $(LINUX26_DIR)/.configured + linux26: $(LINUX26_KERNEL) $(LINUX26_DIR)/.modules_installed: $(TARGET_DIR)/lib/modules/$(LINUX26_VERSION)/modules.dep @@ -218,7 +223,9 @@ linux26-modules: cross-depmod26 $(LINUX26_DIR)/.modules_installed linux26-source: $(DL_DIR)/$(LINUX26_SOURCE) -linux26-patched: $(LINUX26_DIR)/.patched +linux26-unpacked: $(LINUX26_DIR)/.patched + +linux26-config: $(LINUX26_DIR)/.configured # This has been renamed so we do _NOT_ by default run this on 'make clean' linux26clean: |