mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 04:18:25 +02:00
add68b0178
* make image generation makefiles simpler * remove unused profiles * generate images for the Cellvision CAS-xxx/NFS-xxx devices git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10309 3c298f89-4303-0410-b956-a3cf2f4a3e73
32 lines
675 B
Makefile
32 lines
675 B
Makefile
#
|
|
# Copyright (C) 2007,2008 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
define Image/Build/ZyXEL
|
|
$(call Image/Build/TRXNoloader,$(call imgname,$(1),$(2)).trx,$(1))
|
|
endef
|
|
|
|
define Image/Build/Template/ZyXEL/Initramfs
|
|
$(call Image/Build/LZMAKernel/Admboot,$(1),gz)
|
|
endef
|
|
|
|
#
|
|
# Profiles
|
|
#
|
|
define Image/Build/Profile/P334WT
|
|
$(call Image/Build/Template/ZyXEL/$(1),p-334wt)
|
|
endef
|
|
|
|
define Image/Build/Profile/P335WT
|
|
$(call Image/Build/Template/ZyXEL/$(1),p-335wt)
|
|
endef
|
|
|
|
define Image/Build/Profile/Generic
|
|
$(call Image/Build/Profile/P334WT,$(1))
|
|
$(call Image/Build/Profile/P335WT,$(1))
|
|
endef
|
|
|