summaryrefslogtreecommitdiffstats
path: root/scripts/lib/ptxd_make_opkg_common.sh
blob: dca8580212b1fe3f7b06e564849ca9ec748e0d22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
#
# Copyright (C) 2009 by Marc Kleine-Budde <mkl@pengutronix.de>
#               2011 by George McCollister <george.mccollister@gmail.com>
#
# See CREDITS for details about who has contributed to this project.
#
# For further information about the PTXdist project and license conditions
# see the README file.
#


#
# initialize variables needed to package opkgs
#
ptxd_make_opkg_init() {
    pkg_opkg_tmp="${pkg_xpkg_tmp}/opkg"
    pkg_xpkg_control_dir="${pkg_opkg_tmp}/CONTROL"
    pkg_xpkg_control="${pkg_xpkg_control_dir}/control"
    pkg_xpkg_conffiles="${pkg_xpkg_control_dir}/conffiles"
}
export -f ptxd_make_opkg_init