Hi Jonathan We use the openwrt cross toolchain, I am outside now,
Will send all the url, patches of toolchain when I home. I will apply the pathe and upload when I home. Thanks again Best regards Xiangfu On Apr 5, 2010 11:51 AM, "Jonathan Nieder" <jrnie...@gmail.com> wrote: Hi, I would like to see xburst-tools available on Debian mirrors. The packaging is not ready for that yet since it has an undeclared build-time dependency on a mipsel toolchain, making it impossible to automatically build. Worse, there is no mipsel toolchain packaged for Debian except the native one on mips machines. Sigh. Here is a workaround. The idea is to include a compiled copy of the firmware in the Debian source package (but not the upstream source or repository). Since it is built with free software, I think this would still meet Debian’s guidelines, and most importantly, it would work. :) Meanwhile I will look into packaging cross-compilers for Debian, but that might take longer. What do you think? Jonathan Nieder (6): Update and simplify .gitignore configure: Add --disable-firmware option to avoid building firmware debian/rules: rewrite as a minimal debian/rules file (using dh) debian: Avoid tracking generated files debian/control: Add a Vcs-Git field Do not build firmware on buildds usbboot/.gitignore | 31 ++++++--- usbboot/configure.ac | 12 +++ usbboot/debian/.gitignore | 9 +++ usbboot/debian/README.source | 21 ++++++ usbboot/debian/autogen.sh | 10 +++ usbboot/debian/changelog | 15 ++++ usbboot/debian/clean.sh | 108 ++++++++++++++++++++++++++++ usbboot/debian/control | 9 ++- usbboot/debian/rules | 146 +++++++++++--------------------------- usbboot/debian/watch | 11 --- usbboot/src/.gitignore | 11 +-- usbboot/src/Makefile.am | 3 + usbboot/xburst_stage1/.gitignore | 11 --- usbboot/xburst_stage2/.gitignore | 21 ------ 14 files changed, 251 insertions(+), 167 deletions(-) create mode 100644 usbboot/debian/.gitignore create mode 100644 usbboot/debian/README.source create mode 100755 usbboot/debian/autogen.sh create mode 100644 usbboot/debian/clean.sh delete mode 100644 usbboot/debian/watch delete mode 100644 usbboot/xburst_stage1/.gitignore delete mode 100644 usbboot/xburst_stage2/.gitignore