0
0
mirror of https://github.com/Doodle3D/doodle3d-firmware.git synced 2024-12-22 11:03:48 +01:00

Include release notes as html in /www directory.

Bump package version.
This commit is contained in:
Wouter R 2013-12-12 14:08:22 +01:00
parent 01e29b4b5a
commit f5bf9c279d

View File

@ -16,7 +16,7 @@ IncludeWithNewlines = $(subst
# Name and release number of this package # Name and release number of this package
PKG_NAME := wifibox PKG_NAME := wifibox
PKG_VERSION := 0.1.1 PKG_VERSION := 0.1.1
PKG_RELEASE := 7 PKG_RELEASE := 8
# This specifies the directory where we're going to build the program. # This specifies the directory where we're going to build the program.
# The root build directory, $(BUILD_DIR), is by default the build_mipsel # The root build directory, $(BUILD_DIR), is by default the build_mipsel
@ -55,6 +55,7 @@ endef
define Build/Prepare define Build/Prepare
mkdir -p $(PKG_BUILD_DIR) mkdir -p $(PKG_BUILD_DIR)
$(CP) -r ./src/* $(PKG_BUILD_DIR)/ $(CP) -r ./src/* $(PKG_BUILD_DIR)/
$(CP) -r ./ReleaseNotes.md $(PKG_BUILD_DIR)/
endef endef
define Build/Configure define Build/Configure
@ -87,6 +88,7 @@ define Package/wifibox/install
#$(INSTALL_DIR) $(1)/etc #$(INSTALL_DIR) $(1)/etc
$(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_DIR) $(1)/etc/config $(INSTALL_DIR) $(1)/etc/config
#$(INSTALL_DIR) $(1)/www
$(INSTALL_DIR) $(1)/www/cgi-bin $(INSTALL_DIR) $(1)/www/cgi-bin
### create all files in /usr/share/lua/autowifi (autowifi) ### create all files in /usr/share/lua/autowifi (autowifi)
@ -108,6 +110,10 @@ define Package/wifibox/install
$(CP) $(WIFIBOX_BASE_DIR)/script/wifibox.uci.config $(1)/etc/config/wifibox # copy base configuration to uci config dir $(CP) $(WIFIBOX_BASE_DIR)/script/wifibox.uci.config $(1)/etc/config/wifibox # copy base configuration to uci config dir
$(CP) $(WIFIBOX_BASE_DIR)/FIRMWARE-VERSION $(1)/etc/wifibox-version $(CP) $(WIFIBOX_BASE_DIR)/FIRMWARE-VERSION $(1)/etc/wifibox-version
echo "<html><body><pre><code>" > $(1)/www/ReleaseNotes.html
cat $(WIFIBOX_BASE_DIR)/ReleaseNotes.md >> $(1)/www/ReleaseNotes.html
echo "</code></pre></body></html>" >> $(1)/www/ReleaseNotes.html
ifeq ($(CONFIG_WIFIBOX_DEVEL_PACKAGE),y) ifeq ($(CONFIG_WIFIBOX_DEVEL_PACKAGE),y)
# $(INSTALL_DIR) $(1)/$(TGT_LUA_DIR_SUFFIX)/test # $(INSTALL_DIR) $(1)/$(TGT_LUA_DIR_SUFFIX)/test
# $(CP) $(WIFIBOX_BASE_DIR)/test/* $(1)/$(TGT_LUA_DIR_SUFFIX)/test/ # $(CP) $(WIFIBOX_BASE_DIR)/test/* $(1)/$(TGT_LUA_DIR_SUFFIX)/test/