Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: andersen at uclibc.org <andersen@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] svn commit: trunk/buildroot/target/device/x86/i386
Date: Wed, 13 Dec 2006 03:57:14 -0800 (PST)	[thread overview]
Message-ID: <20061213115714.BE28B48579@busybox.net> (raw)

Author: andersen
Date: 2006-12-13 03:57:14 -0800 (Wed, 13 Dec 2006)
New Revision: 16887

Log:
rename


Added:
   trunk/buildroot/target/device/x86/i386/linux26.mk

Removed:
   trunk/buildroot/target/device/x86/i386/linux.mk


Changeset:
Deleted: trunk/buildroot/target/device/x86/i386/linux.mk
===================================================================
--- trunk/buildroot/target/device/x86/i386/linux.mk	2006-12-13 11:53:38 UTC (rev 16886)
+++ trunk/buildroot/target/device/x86/i386/linux.mk	2006-12-13 11:57:14 UTC (rev 16887)
@@ -1,114 +0,0 @@
-#############################################################
-#
-# Linux kernel 2.6 target
-#
-#############################################################
-ifneq ($(filter $(TARGETS),linux26),)
-
-
-# Version of Linux to download and then apply patches to
-DOWNLOAD_LINUX26_VERSION=2.6.19.1
-# Version of Linux after applying any patches
-LINUX26_VERSION=2.6.19.1
-
-
-
-LINUX26_SOURCE=linux-$(DOWNLOAD_LINUX26_VERSION).tar.bz2
-LINUX26_SITE=http://ftp.kernel.org/pub/linux/kernel/v2.6
-
-#LINUX26_FORMAT=vmlinux
-#LINUX26_BINLOC=$(LINUX26_FORMAT)
-LINUX26_FORMAT=bzImage
-LINUX26_BINLOC=arch/i386/boot/$(LINUX26_FORMAT)
-
-# Linux kernel configuration file
-LINUX26_KCONFIG=$(X86_I386_PATH)/linux26.config
-
-# File name for the Linux kernel binary
-LINUX26_KERNEL=linux-kernel-$(LINUX26_VERSION)-$(KERNEL_ARCH)
-
-# Version of Linux AFTER patches
-LINUX26_DIR=$(BUILD_DIR)/linux-$(LINUX26_VERSION)
-
-# kernel patches
-LINUX26_PATCH_DIR=target/device/x86/i386/kernel-patches/
-
-LINUX26_MAKE_FLAGS = $(TARGET_CONFIGURE_OPTS) ARCH=$(KERNEL_ARCH) \
-	PATH=$(TARGET_PATH) INSTALL_MOD_PATH=$(TARGET_DIR) \
-	CROSS_COMPILE=$(KERNEL_CROSS)
-
-
-
-
-$(DL_DIR)/$(LINUX26_SOURCE):
-	 $(WGET) -P $(DL_DIR) $(LINUX26_SITE)/$(LINUX26_SOURCE)
-
-$(LINUX26_DIR)/.unpacked: $(DL_DIR)/$(LINUX26_SOURCE)
-	rm -rf $(LINUX26_DIR)
-	bzcat $(DL_DIR)/$(LINUX26_SOURCE) | tar -C $(BUILD_DIR) -xvf -
-ifneq ($(DOWNLOAD_LINUX26_VERSION),$(LINUX26_VERSION))
-	# Rename the dir from the downloaded version to the AFTER patch version
-	mv -f $(BUILD_DIR)/linux-$(DOWNLOAD_LINUX26_VERSION) $(BUILD_DIR)/linux-$(LINUX26_VERSION)
-endif
-	touch $(LINUX26_DIR)/.unpacked
-
-$(LINUX26_KCONFIG):
-	@if [ ! -f "$(LINUX26_KCONFIG)" ] ; then \
-		echo ""; \
-		echo "You should create a .config for your kernel"; \
-		echo "and install it as $(LINUX26_KCONFIG)"; \
-		echo ""; \
-		sleep 5; \
-	fi;
-
-$(LINUX26_DIR)/.patched: $(LINUX26_DIR)/.unpacked
-	#toolchain/patch-kernel.sh $(LINUX26_DIR) $(LINUX26_PATCH_DIR)
-	touch $(LINUX26_DIR)/.patched
-
-$(LINUX26_DIR)/.configured:  $(LINUX26_DIR)/.patched  $(LINUX26_KCONFIG)
-	-cp $(LINUX26_KCONFIG) $(LINUX26_DIR)/.config
-	$(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) oldconfig
-	touch $(LINUX26_DIR)/.configured
-
-linux26-menuconfig: $(LINUX26_DIR)/.patched
-	[ -f $(LINUX26_DIR)/.config ] || cp $(LINUX26_KCONFIG) $(LINUX26_DIR)/.config
-	$(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) menuconfig
-	-[ -f $(LINUX26_DIR)/.config ] && touch $(LINUX26_DIR)/.configured
-
-$(LINUX26_DIR)/.depend_done:  $(LINUX26_DIR)/.configured
-	$(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) prepare
-	touch $(LINUX26_DIR)/.depend_done
-
-$(LINUX26_KERNEL): $(LINUX26_DIR)/.depend_done
-	$(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) $(LINUX26_FORMAT) bzImage
-	$(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) modules
-	cp -fa $(LINUX26_DIR)/$(LINUX26_BINLOC) $(LINUX26_KERNEL)
-	touch -c $(LINUX26_KERNEL)
-
-$(TARGET_DIR)/boot/$(LINUX26_BINLOC): $(LINUX26_KERNEL)
-	[ -d $(TARGET_DIR)/boot/ ] || mkdir $(TARGET_DIR)/boot
-	cp -a $(LINUX26_DIR)/$(LINUX26_BINLOC) $(LINUX26_DIR)/System.map $(TARGET_DIR)/boot/
-	touch -c $(TARGET_DIR)/boot/$(LINUX26_BINLOC)
-
-$(TARGET_DIR)/lib/modules/$(LINUX26_VERSION)/modules.dep: $(LINUX26_KERNEL)
-	rm -rf $(TARGET_DIR)/lib/modules/$(LINUX26_VERSION)
-	rm -f $(TARGET_DIR)/sbin/cardmgr
-	$(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) \
-		DEPMOD=$(STAGING_DIR)/bin/$(GNU_TARGET_NAME)-depmod \
-		INSTALL_MOD_PATH=$(TARGET_DIR) modules_install
-	rm -f $(TARGET_DIR)/lib/modules/$(LINUX26_VERSION)/build
-	touch -c $(TARGET_DIR)/lib/modules/$(LINUX26_VERSION)/modules.dep
-
-linux26: cross-depmod26 $(TARGET_DIR)/lib/modules/$(LINUX26_VERSION)/modules.dep
-
-linux26-source: $(DL_DIR)/$(LINUX26_SOURCE)
-
-# This has been renamed so we do _NOT_ by default run this on 'make clean'
-linux26clean:
-	rm -f $(LINUX26_KERNEL)
-	-$(MAKE) PATH=$(TARGET_PATH) -C $(LINUX26_DIR) clean
-
-linux26-dirclean:
-	rm -rf $(LINUX26_DIR)
-
-endif

Copied: trunk/buildroot/target/device/x86/i386/linux26.mk (from rev 16885, trunk/buildroot/target/device/x86/i386/linux.mk)

             reply	other threads:[~2006-12-13 11:57 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-12-13 11:57 andersen at uclibc.org [this message]
  -- strict thread matches above, loose matches on Subject: below --
2006-12-13 11:59 [Buildroot] svn commit: trunk/buildroot/target/device/x86/i386 andersen at uclibc.org
2006-12-13 20:26 aldot at uclibc.org
2006-12-18 13:48 aldot at uclibc.org
2006-12-18 14:10 aldot at uclibc.org
2007-01-15 17:34 aldot at uclibc.org
2007-01-30  0:12 aldot at uclibc.org
2007-01-30  0:35 aldot at uclibc.org
2007-01-30 17:37 aldot at uclibc.org
2007-03-14 13:55 aldot at uclibc.org
2007-03-14 16:38 aldot at uclibc.org
2007-03-20  9:52 aldot at uclibc.org
2007-06-02 17:41 aldot at uclibc.org
2007-07-08 13:51 aldot at uclibc.org
2007-07-23 13:26 ulf at uclibc.org
2007-08-16 23:45 ulf at uclibc.org
2007-08-21 13:23 aldot at uclibc.org
2007-08-25 11:20 aldot at uclibc.org
2007-09-22 18:19 aldot at uclibc.org
2008-03-18 11:51 ulf at uclibc.org
2008-04-11 11:46 ` Simon Pasch
2008-03-18 14:32 ulf at uclibc.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20061213115714.BE28B48579@busybox.net \
    --to=andersen@uclibc.org \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox