From: Paul Sokolovsky Date: Wed, 9 Jan 2008 02:34:12 +0000 (+0000) Subject: openwrt-sdk.conf: Elaborate, tested to actually work. X-Git-Tag: Release-2010-05/1~7978^2~2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67067c8bb631cd7221de861626105356ae8b6471;p=openembedded.git openwrt-sdk.conf: Elaborate, tested to actually work. * Set IPKGBUILDCMD to produce openwrt-compatible packages (tar.gz toplevel wrap instead of ar). Caveat: latest ipkg-make-index doesn't support these. Pre-latest, doesn't throw error, but generates crap still. * Added ASSUME_SHLIB for libm. --- diff --git a/conf/distro/openwrt-sdk.conf b/conf/distro/openwrt-sdk.conf index fc760f9ea0..92e5ac5b39 100644 --- a/conf/distro/openwrt-sdk.conf +++ b/conf/distro/openwrt-sdk.conf @@ -18,9 +18,12 @@ require conf/distro/generic-uclibc.conf # Header # DISTRO_NAME = "OpenWRT" +DISTRO_REVISION = "2" + +IPKGBUILDCMD = "ipkg-build -c -o 0 -g 0" # This is what lives in SDK ASSUME_PROVIDED += "virtual/${TARGET_PREFIX}gcc virtual/libc" # Make sure that we have correct package dependencies for SDK-provided libs. -ASSUME_SHLIBS += "libc.so.0:uclibc libgcc_s.so.1:libgcc" +ASSUME_SHLIBS += "libc.so.0:uclibc libm.so.0:uclibc libgcc_s.so.1:libgcc"