diff options
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 |