~ubuntu-branches/ubuntu/maverick/uboot-imx/maverick

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Grawert
  • Date: 2010-01-20 15:41:26 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100120154126-7bha1jeyjegu7xm5
Tags: 2009.08+really2009.01-0ubuntu1
* revert to the 2009.01 upstream version, 2009.08 has still to 
  many work in progress items in the freescale patchset (MMC and NIC
  dont work at all)
* add the latest patchset from freescale for 2009.01
* add 1002_enable_hush_shell_and_ext2.patch to enable hush shell and ext2 
* add 1003_fix_board_revision_numbers to make sure babbage 2.5 boards have 
  revision 51120 and babbage 3.0 boards have revision 51130 properly set in 
  their cpuinfo

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
CFLAGS=
10
10
 
11
11
build/uboot-imx51-to3::
12
 
        $(MAKE) O=build/build-imx51 mx51_bbg_config
 
12
        $(MAKE) O=build/build-imx51 imx51_config
13
13
        $(MAKE) O=build/build-imx51
14
14
 
15
15
        touch $@
23
23
 
24
24
get-orig-source:
25
25
        cd $(CURDIR)/.. && \
26
 
        wget ftp://ftp.denx.de/pub/u-boot/u-boot-2009.08.tar.bz2 && \
 
26
        wget ftp://ftp.denx.de/pub/u-boot/u-boot-2009.01.tar.bz2 && \
27
27
        echo "Recompressing the bz2 as a gzip ..." && \
28
 
        bunzip2 u-boot-2009.08.tar.bz2 && \
29
 
        gzip -9 u-boot-2009.08.tar && \
30
 
        mv u-boot-2009.08.tar.gz uboot-imx_2009.08.orig.tar.gz
 
28
        bunzip2 u-boot-2009.01.tar.bz2 && \
 
29
        gzip -9 u-boot-2009.01.tar && \
 
30
        mv u-boot-2009.01.tar.gz uboot-imx_2009.01.orig.tar.gz
31
31