diff options
author | Markus Heidelberg <markus.heidelberg@web.de> | 2009-05-03 13:41:58 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-05-03 22:24:36 +0200 |
commit | 7d369f837f656f9b4754854aab5877e01cb4980d (patch) | |
tree | dea45072354ef950605e1b76de240e5f311adc87 /scripts | |
parent | 4a29b224386aedbf19149a2b08d40f7ace065044 (diff) |
scripts/package wizard: clarify the steps after the wizard
Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/add_new_package.wizard | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/scripts/add_new_package.wizard b/scripts/add_new_package.wizard index 902718da8..4ee02dfb2 100755 --- a/scripts/add_new_package.wizard +++ b/scripts/add_new_package.wizard @@ -92,17 +92,29 @@ config BR2_PACKAGE_${NAME_UPPER} ${URL} EOF -echo "Just add: source \"${CATEGORY_DIR}/${PACKAGE_NAME}/Config.in\"" -echo "to the file ${CATEGORY_DIR}/Config.in in an appropriate" -echo "location." +echo +echo "**** Manual steps to integrate your new package ****" +echo + +echo "Add the following line to ${CATEGORY_DIR}/Config.in" +echo "in an appropriate location:" +echo "source \"${CATEGORY_DIR}/${PACKAGE_NAME}/Config.in\"" if [ -n "$SUB_DIR" ]; then - echo "Additionally add: source \"${CATEGORY_DIR}/Config.in\"" - echo "to the file package/Config.in in an appropriate" - echo "location." + echo + echo "Additionally add the following line to package/Config.in" + echo "in an appropriate location:" + echo "source \"${CATEGORY_DIR}/Config.in\"" +fi + +if [ -n "$EXTRA_DEPS" ]; then + echo + echo "You need to add \"depends on\" and/or \"select\" lines" + echo "to ${CATEGORY_DIR}/${PACKAGE_NAME}/Config.in" + echo "corresponding to the \"${NAME_UPPER}_DEPENDENCIES\" line" + echo "in ${CATEGORY_DIR}/${PACKAGE_NAME}/${PACKAGE_NAME}.mk" fi echo -echo "You are now ready to build ${PACKAGE_NAME}" -echo "Just run make menuconfig and select your new" -echo "package, then run make." +echo "After that run \"make menuconfig\", select your new package" +echo "and run \"make\" to build \"${PACKAGE_NAME}\"." |