2009-04-03 20:05:20 +03:00
|
|
|
#
|
|
|
|
# "PI Makefile" - for setting up the PI development environment
|
|
|
|
#
|
|
|
|
# (C) Copyright 2009 PI, Inc.
|
|
|
|
# Author: xiangfu liu <xiangfu@openmoko.org>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# version 3 as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
# Boston, MA 02110-1301, USA
|
|
|
|
|
|
|
|
|
|
|
|
BINUTILS_VER=binutils-2.17
|
|
|
|
GCC_VER=gcc-4.1.2
|
|
|
|
GLIBC_VER=glibc-2.6.1
|
|
|
|
GLIBC_PORTS_VER=glibc-ports-2.6.1
|
2009-04-05 13:26:40 +03:00
|
|
|
KERNEL_HEADERS_VER=linux-headers-2.6.24.3
|
2009-04-05 21:14:39 +03:00
|
|
|
KERNEL_VER=linux-2.6.24.3
|
2009-04-05 19:22:48 +03:00
|
|
|
U-BOOT_VER=u-boot-1.1.6
|
2009-04-03 20:05:20 +03:00
|
|
|
|
2009-04-05 19:22:48 +03:00
|
|
|
U-BOOT_PATH=u-boot
|
2009-04-05 21:14:39 +03:00
|
|
|
KERNEL_PATH=kernel
|
2009-04-03 20:05:20 +03:00
|
|
|
TOOLCHAIN_PATH=toolchain
|
|
|
|
DL_PATH=$(TOOLCHAIN_PATH)/dl
|
|
|
|
INSTALL_PATH=install
|
2009-04-06 13:48:09 +03:00
|
|
|
PATCHES_PATH=$(TOOLCHAIN_PATH)/patches
|
|
|
|
GLIBC_PATCHES_PATH=$(PATCHES_PATH)/glibc
|
2009-04-07 10:53:37 +03:00
|
|
|
USBBOOT_PATH=usbboot
|
|
|
|
USBBOOT_STAGE1_PATH=$(USBBOOT_PATH)/stage1
|
|
|
|
USBBOOT_STAGE2_PATH=$(USBBOOT_PATH)/stage2
|
2009-04-03 20:05:20 +03:00
|
|
|
|
|
|
|
BINUTILS_PACKAGE=$(BINUTILS_VER).tar.bz2
|
|
|
|
BINUTILS_URL= \
|
|
|
|
ftp://ftp.gnu.org/gnu/binutils/$(BINUTILS_PACKAGE)
|
|
|
|
GCC_PACKAGE=$(GCC_VER).tar.bz2
|
|
|
|
GCC_URL=ftp://ftp.gnu.org/gnu/gcc/$(GCC_VER)/$(GCC_PACKAGE)
|
|
|
|
GLIBC_PACKAGE=$(GLIBC_VER).tar.bz2
|
|
|
|
GLIBC_URL=ftp://ftp.gnu.org/gnu/glibc/$(GLIBC_PACKAGE)
|
|
|
|
GLIBC_PORTS_PACKAGE=$(GLIBC_PORTS_VER).tar.bz2
|
|
|
|
GLIBC_PORTS_URL=ftp://ftp.gnu.org/gnu/glibc/$(GLIBC_PORTS_PACKAGE)
|
2009-04-05 13:26:40 +03:00
|
|
|
KERNEL_HEADERS_PACKAGE=$(KERNEL_HEADERS_VER).tar.bz2
|
|
|
|
KERNEL_HEADERS_URL=
|
2009-04-03 20:05:20 +03:00
|
|
|
|
|
|
|
CFLAGS="-O2"
|
|
|
|
|
|
|
|
export PATH:=$(PWD)/install/bin:$(PATH)
|
|
|
|
|
2009-04-06 13:48:09 +03:00
|
|
|
# this glibc version does not build with gcc 4.3 - hence this special compat parameter
|
|
|
|
GCC_VERSION=$(shell [ "`gcc --version | grep '4.3'`" ] && echo "43" )
|
|
|
|
ifeq ($(GCC_VERSION),43)
|
|
|
|
BUILD_CC="gcc -fgnu89-inline"
|
|
|
|
else
|
|
|
|
BUILD_CC="gcc"
|
|
|
|
endif
|
|
|
|
|
2009-04-03 20:05:20 +03:00
|
|
|
|
|
|
|
toolchain: binutils gcc glibc
|
|
|
|
|
|
|
|
|
|
|
|
### misc
|
|
|
|
|
|
|
|
$(DL_PATH):
|
|
|
|
mkdir -p $(DL_PATH)
|
|
|
|
|
|
|
|
$(INSTALL_PATH):
|
|
|
|
mkdir -p $(INSTALL_PATH)
|
|
|
|
|
|
|
|
%$(BINUTILS_PACKAGE): URL=$(BINUTILS_URL)
|
|
|
|
%$(GCC_PACKAGE): URL=$(GCC_URL)
|
|
|
|
%$(GLIBC_PACKAGE): URL=$(GLIBC_URL)
|
|
|
|
%$(GLIBC_PORTS_PACKAGE): URL=$(GLIBC_PORTS_URL)
|
|
|
|
|
2009-04-06 13:48:09 +03:00
|
|
|
.tar.bz2: $(DL_PATH) $(INSTALL_PATH)
|
2009-04-03 20:05:20 +03:00
|
|
|
wget -c -O $@ $(URL)
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
|
|
|
|
### toolchain stuff
|
|
|
|
|
|
|
|
binutils: $(DL_PATH)/$(BINUTILS_PACKAGE)
|
|
|
|
tar -xvjf $(DL_PATH)/$(BINUTILS_PACKAGE) -C $(TOOLCHAIN_PATH)
|
|
|
|
mkdir -p $(TOOLCHAIN_PATH)/$(BINUTILS_VER)/build
|
|
|
|
cd $(TOOLCHAIN_PATH)/$(BINUTILS_VER)/build && \
|
|
|
|
../configure --target=mipsel-linux --prefix=$(PWD)/$(INSTALL_PATH) --disable-werror \
|
|
|
|
&& make CFLAGS=$(CFLAGS) && make install
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
gcc: $(DL_PATH)/$(GCC_PACKAGE)
|
|
|
|
tar -xvjf $(DL_PATH)/$(GCC_PACKAGE) -C $(TOOLCHAIN_PATH)
|
|
|
|
cd $(TOOLCHAIN_PATH)/$(GCC_VER)/libiberty && \
|
|
|
|
cat strsignal.c | sed -e 's/#ifndef HAVE_PSIGNAL/#if 0/g' >junk.c && \
|
|
|
|
cp -f strsignal.c strsignal.c.fixed && mv -f junk.c strsignal.c
|
|
|
|
mkdir -p $(TOOLCHAIN_PATH)/$(GCC_VER)/build
|
|
|
|
cd $(TOOLCHAIN_PATH)/$(GCC_VER)/build && \
|
|
|
|
../configure --target=mipsel-linux \
|
|
|
|
--host=i686-pc-linux-gnu --prefix=$(PWD)/$(INSTALL_PATH) \
|
|
|
|
--disable-shared --disable-threads --disable-multilib \
|
|
|
|
--enable-languages=c && make CFLAGS=$(CFLAGS) all-gcc && make install-gcc
|
|
|
|
touch $@
|
|
|
|
|
2009-04-05 13:26:40 +03:00
|
|
|
glibc: $(DL_PATH)/$(GLIBC_PACKAGE) $(DL_PATH)/$(GLIBC_PORTS_PACKAGE) $(DL_PATH)/$(KERNEL_HEADERS_PACKAGE)
|
|
|
|
tar -xvjf $(DL_PATH)/$(KERNEL_HEADERS_PACKAGE) -C $(TOOLCHAIN_PATH)
|
2009-04-03 20:05:20 +03:00
|
|
|
tar -xvjf $(DL_PATH)/$(GLIBC_PACKAGE) -C $(TOOLCHAIN_PATH)
|
|
|
|
tar -xvjf $(DL_PATH)/$(GLIBC_PORTS_PACKAGE) -C $(TOOLCHAIN_PATH)/$(GLIBC_VER)
|
|
|
|
mv $(TOOLCHAIN_PATH)/$(GLIBC_VER)/$(GLIBC_PORTS_VER) $(TOOLCHAIN_PATH)/$(GLIBC_VER)/ports
|
|
|
|
cd $(TOOLCHAIN_PATH)/$(GLIBC_VER) && \
|
|
|
|
patch -Np1 -i $(PWD)/$(GLIBC_PATCHES_PATH)/glibc-2.6.1-cross_hacks-1.patch && \
|
|
|
|
patch -Np1 -i $(PWD)/$(GLIBC_PATCHES_PATH)/glibc-2.6.1-libgcc_eh-1.patch && \
|
|
|
|
patch -Np1 -i $(PWD)/$(GLIBC_PATCHES_PATH)/glibc-2.6.1-localedef_segfault-1.patch && \
|
2009-04-06 13:48:09 +03:00
|
|
|
patch -Np1 -i $(PWD)/$(GLIBC_PATCHES_PATH)/glibc-2.6.1-mawk_fix-1.patch
|
|
|
|
# patch -Np1 -i $(PWD)/$(GLIBC_PATCHES_PATH)/glibc-2.6.1-alpha_ioperm_fix-1.patch && \
|
|
|
|
# patch -Np1 -i $(PWD)/$(GLIBC_PATCHES_PATH)/glibc-2.6.1-RTLD_SINGLE_THREAD_P-1.patch && \
|
|
|
|
# patch -Np1 -i $(PWD)/$(GLIBC_PATCHES_PATH)/glibc-2.6.1-sysdep_cancel-1.patch && \
|
|
|
|
# patch -Np1 -i $(PWD)/$(GLIBC_PATCHES_PATH)/glibc-2.6.1-hppa_nptl-1.patch
|
2009-04-03 20:05:20 +03:00
|
|
|
mkdir -p $(TOOLCHAIN_PATH)/$(GLIBC_VER)/build
|
|
|
|
cd $(TOOLCHAIN_PATH)/$(GLIBC_VER)/build && \
|
|
|
|
echo "libc_cv_forced_unwind=yes" > config.cache && \
|
|
|
|
echo "libc_cv_c_cleanup=yes" >> config.cache && \
|
|
|
|
echo "libc_cv_mips_tls=yes" >> config.cache && \
|
2009-04-06 13:48:09 +03:00
|
|
|
BUILD_CC=$(BUILD_CC) CC="mipsel-linux-gcc" \
|
2009-04-03 20:05:20 +03:00
|
|
|
AR="mipsel-linux-ar" RANLIB="mipsel-linux-ranlib" \
|
2009-04-06 13:48:09 +03:00
|
|
|
../configure --prefix=$(PWD)/$(INSTALL_PATH) --libexecdir=$(PWD)/$(INSTALL_PATH)/libexec/glibc \
|
2009-04-03 20:05:20 +03:00
|
|
|
--host=mipsel-linux --build=i686-pc-linux-gnu \
|
|
|
|
--disable-profile --enable-add-ons --with-tls --enable-kernel=2.6.0 \
|
2009-04-05 13:26:40 +03:00
|
|
|
--with-__thread --with-binutils=$(PWD)/$(INSTALL_PATH)/bin \
|
|
|
|
--with-headers=$(PWD)/$(TOOLCHAIN_PATH)/$(KERNEL_HEADERS_VER) \
|
|
|
|
--cache-file=config.cache && \
|
2009-04-06 13:48:09 +03:00
|
|
|
make CFLAGS=$(CFLAGS) && make install
|
|
|
|
cp $(GLIBC_PATCHES_PATH)/SUPPORTED $(TOOLCHAIN_PATH)/$(GLIBC_VER)/localedata/
|
|
|
|
cd $(TOOLCHAIN_PATH)/$(GLIBC_VER)/build && \
|
|
|
|
make localedata/install-locales
|
2009-04-03 20:05:20 +03:00
|
|
|
touch $@
|
|
|
|
|
2009-04-05 19:22:48 +03:00
|
|
|
### u-boot
|
|
|
|
.PHONY: u-boot
|
|
|
|
u-boot:
|
|
|
|
export PATH=/opt/mipseltools-gcc412-glibc261/bin:$PATH
|
|
|
|
tar -xjvf $(U-BOOT_PATH)/dl/u-boot-1.1.6.tar.bz2 -C $(U-BOOT_PATH)
|
|
|
|
cd $(U-BOOT_PATH)/$(U-BOOT_VER) && \
|
|
|
|
patch -Np1 -i ../patchs/u-boot-1.1.6-jz-20090306.patch && \
|
|
|
|
make pavo_nand_config && \
|
|
|
|
make
|
|
|
|
|
2009-04-07 10:53:37 +03:00
|
|
|
### usbboot
|
|
|
|
.PHONY: usbboot
|
|
|
|
usbboot: usbboot-tools usbboot-stage
|
|
|
|
|
|
|
|
usbboot-tools:
|
|
|
|
|
|
|
|
usbboot-stage:
|
|
|
|
make -C $(USBBOOT_STAGE1_PATH)
|
|
|
|
make -C $(USBBOOT_STAGE2_PATH)
|
|
|
|
|
2009-04-05 21:14:39 +03:00
|
|
|
### kernel
|
|
|
|
.PHONY: kernel
|
|
|
|
kernel:
|
|
|
|
export PATH=/opt/mipseltools-gcc412-glibc261/bin:$PATH
|
|
|
|
tar -xjvf $(KERNEL_PATH)/dl/linux-2.6.24.3.tar.bz2 -C $(KERNEL_PATH)
|
|
|
|
cd $(KERNEL_PATH)/$(KERNEL_VER) && \
|
|
|
|
patch -Np1 -i ../patchs/linux-2.6.24.3-jz-20090226.patch && \
|
|
|
|
make pavo_defconfig && \
|
|
|
|
make xconfig && \
|
|
|
|
make zImage
|
|
|
|
|
2009-04-03 20:05:20 +03:00
|
|
|
### clean up
|
|
|
|
|
|
|
|
distclean: clean clean-toolchain
|
|
|
|
|
2009-04-07 10:53:37 +03:00
|
|
|
clean: clean-u-boot
|
2009-04-03 20:05:20 +03:00
|
|
|
|
2009-04-05 13:26:40 +03:00
|
|
|
clean-toolchain: clean-glibc
|
2009-04-06 13:48:09 +03:00
|
|
|
rm -rf $(TOOLCHAIN_PATH)/$(BINUTILS_VER) binutils
|
2009-04-05 13:26:40 +03:00
|
|
|
rm -rf $(TOOLCHAIN_PATH)/$(GCC_VER) gcc
|
2009-04-06 13:48:09 +03:00
|
|
|
rm -rf $(INSTALL_PATH)
|
2009-04-05 13:26:40 +03:00
|
|
|
|
|
|
|
clean-glibc:
|
2009-04-06 13:48:09 +03:00
|
|
|
rm -rf $(TOOLCHAIN_PATH)/$(GLIBC_VER) glibc
|
2009-04-03 20:05:20 +03:00
|
|
|
|
2009-04-05 19:22:48 +03:00
|
|
|
clean-u-boot:
|
|
|
|
rm -rf $(U-BOOT_PATH)/$(U-BOOT_VER)
|
|
|
|
|
2009-04-05 13:26:40 +03:00
|
|
|
help:
|
2009-04-07 11:03:24 +03:00
|
|
|
@make --print-data-base --question | \
|
2009-04-03 20:05:20 +03:00
|
|
|
awk '/^[^.%][-A-Za-z0-9_]*:/ \
|
2009-04-04 05:20:03 +03:00
|
|
|
{ print substr($$1, 1, length($$1)-1) }' | \
|
2009-04-03 20:05:20 +03:00
|
|
|
sort | \
|
|
|
|
pr --omit-pagination --width=80 --columns=1
|