1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

add openwrt sdk

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@613 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2005-04-10 20:28:17 +00:00
parent afbd9dd3c0
commit 62f204e188
7 changed files with 104 additions and 1 deletions

8
package/sdk/Config.in Normal file
View File

@@ -0,0 +1,8 @@
config BR2_PACKAGE_SDK
bool "OpenWrt SDK"
default y
help
Build an OpenWrt SDK.
This is essentially a stripped-down version of the buildroot
with a precompiled toolchain. It can be used to develop and
test packages for OpenWrt before including them in the buildroot

41
package/sdk/Makefile Normal file
View File

@@ -0,0 +1,41 @@
# $Id$
include $(TOPDIR)/rules.mk
PKG_OS:=$(shell uname -s)
PKG_CPU:=$(shell uname -m)
PKG_RELEASE:=1
PKG_NAME:=OpenWrt-SDK-$(PKG_OS)-$(PKG_CPU)-$(PKG_RELEASE)
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
all: compile
$(BIN_DIR)/$(PKG_NAME).tar.bz2:
(cd $(STAGING_DIR); \
rm -rf info man share; \
cd usr; \
rm -rf doc info man share; \
)
rm -rf $(PKG_BUILD_DIR)
mkdir -p $(PKG_BUILD_DIR)/dl $(PKG_BUILD_DIR)/examples $(PKG_BUILD_DIR)/package
cp -a $(STAGING_DIR) $(SCRIPT_DIR) $(TOPDIR)/docs $(PKG_BUILD_DIR)/
cp -a $(TOPDIR)/package/strace $(TOPDIR)/package/iproute2 $(PKG_BUILD_DIR)/examples
cp $(TOPDIR)/rules.mk $(PKG_BUILD_DIR)/
cp ./files/Makefile.sdk $(PKG_BUILD_DIR)/Makefile
cp ./files/README.SDK $(PKG_BUILD_DIR)/
cp ./files/depend.mk $(PKG_BUILD_DIR)/package/
egrep '^BR2_(ARCH|WGET|STAGING|JLEVEL|LARGEFILE|TARGET_OPT)' $(TOPDIR)/.config > $(PKG_BUILD_DIR)/.config
find $(PKG_BUILD_DIR) -name CVS | xargs rm -rf
(cd $(BUILD_DIR); \
tar cfj $@ $(PKG_NAME); \
)
source:
prepare:
compile: $(BIN_DIR)/$(PKG_NAME).tar.bz2
install:
clean:
rm -rf $(PKG_BUILD_DIR)

View File

@@ -0,0 +1,34 @@
# OpenWrt SDK Makefile
TOPDIR:=${shell pwd}
export TOPDIR
include $(TOPDIR)/rules.mk
include $(TOPDIR)/package/depend.mk
PACKAGES:=$(filter-out %.mk,$(shell ls $(TOPDIR)/package))
PACKAGES_PREPARE:=$(foreach package,$(PACKAGES),$(package)-prepare)
PACKAGES_COMPILE:=$(foreach package,$(PACKAGES),$(package)-compile)
PACKAGES_CLEAN:=$(foreach package,$(PACKAGES),$(package)-clean)
all: compile
compile: $(PACKAGES_COMPILE)
clean: $(PACKAGES_CLEAN)
rm -rf $(BUILD_DIR)
rm -rf bin
distclean: clean
rm -rf $(DL_DIR)
%-prepare: $(BUILD_DIR)
@$(MAKE) -C package/$(patsubst %-prepare,%,$@) prepare
%-compile: %-prepare
@$(MAKE) -C package/$(patsubst %-compile,%,$@) compile
%-clean:
@$(MAKE) -C package/$(patsubst %-clean,%,$@) clean
$(BUILD_DIR):
mkdir -p $@
mkdir -p $(DL_DIR)

View File

@@ -0,0 +1,7 @@
This is the OpenWrt SDK. It contains a stripped-down version of
the buildroot. You can use it to test/develop packages without
having to compile your own toolchain or any of the libraries
included with OpenWrt.
To use it, just put your buildroot-compatible package directory
in the subdir 'package/' and run 'make' from this directory.

View File

@@ -0,0 +1,6 @@
# You can put your package dependencies in here
# Example (make openvpn depend on openssl):
# openvpn-compile: openssl-compile
#
# Note: This file is not present in the full buildroot. There you
# have to put your package dependencies in buildroot/package/Makefile