diff options
author | P. J. McDermott <pjm@nac.net> | 2013-06-18 18:03:16 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-06-18 18:03:16 (EDT) |
commit | 30f6b7142d31a3b2b6ff9a5f0557c86db865add7 (patch) | |
tree | 3fb12402ab34bdff855a1d4afde4e75f78e69b38 /build |
Initial commit.
Diffstat (limited to 'build')
-rwxr-xr-x | build | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -0,0 +1,22 @@ +#!/usr/bin/make -f + +# Host/target platform: +plat = dev + +# The OPK_SOURCE_VERSION_UPSTREAMs of packages: +busybox_ver = 1.21.0 + +# Nothing beyond this point requires updating for platform porting or new +# upstream package versions. + +base = /usr/share/platconf/$(plat) +busybox_platconf = config-busybox-$(plat).data/$(base)/busybox_$(busybox_ver) + +nop: + @: + +build: + @: + +install: build + install -D src/busybox/config $(busybox_platconf)/busybox.config |