2009-05-11 18:27:33 +00:00
|
|
|
#
|
2018-04-29 16:07:05 +00:00
|
|
|
# Copyright (C) 2009-2018 OpenWrt.org
|
2009-05-11 18:27:33 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
|
2018-06-13 15:45:04 +00:00
|
|
|
# Cook a "WRGG" image, this board is apparently one in the D-Link
|
|
|
|
# WRGG family and uses the exact same firmware format as other
|
|
|
|
# D-Link devices.
|
2018-05-11 17:10:16 +00:00
|
|
|
define Build/dir685-images
|
2018-06-13 15:45:04 +00:00
|
|
|
mkwrggimg -i $(IMAGE_KERNEL) \
|
2019-01-25 20:30:36 +00:00
|
|
|
-o $@.new \
|
2018-06-13 15:45:04 +00:00
|
|
|
-d /dev/mtdblock/1 \
|
|
|
|
-s wrgns01_dlwbr_dir685RBWW \
|
|
|
|
-v 'N/A' \
|
|
|
|
-m dir685 \
|
|
|
|
-B 96bb
|
2019-01-25 20:30:36 +00:00
|
|
|
|
|
|
|
mv $@.new $@
|
2018-05-11 17:10:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
# Build D-Link DNS-313 images using the special header tool.
|
2018-04-29 16:07:05 +00:00
|
|
|
# rootfs.tgz and rd.tgz contains nothing, we only need them
|
|
|
|
# to satisfy the boot loader on the device. The zImage is
|
|
|
|
# the only real content.
|
|
|
|
define Build/dns313-images
|
2019-01-25 20:39:49 +00:00
|
|
|
mkdir -p $@.tmp/.boot
|
|
|
|
|
|
|
|
echo "dummy" > $@.tmp/dummyfile
|
|
|
|
|
|
|
|
dns313-header $@.tmp/dummyfile \
|
|
|
|
$@.tmp/.boot/rootfs.tgz
|
|
|
|
dns313-header $@.tmp/dummyfile \
|
|
|
|
$@.tmp/.boot/rd.gz
|
2018-04-29 16:07:05 +00:00
|
|
|
dns313-header $(IMAGE_KERNEL) \
|
2019-01-25 20:39:49 +00:00
|
|
|
$@.tmp/.boot/zImage
|
|
|
|
|
2019-01-25 20:42:28 +00:00
|
|
|
tar --sort=name --owner=0 --group=0 --numeric-owner -czf $@ \
|
|
|
|
-C $@.tmp .boot \
|
|
|
|
$(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)")
|
2019-01-25 20:39:49 +00:00
|
|
|
|
|
|
|
rm -rf $@.tmp
|
2009-05-11 18:27:33 +00:00
|
|
|
endef
|
|
|
|
|
2019-01-22 21:18:57 +00:00
|
|
|
# Create the special NAS4220B and Itian Square One SQ201 image
|
|
|
|
# format with the squashfs and overlay inside the "rd.gz" file.
|
|
|
|
# We pad it out to 6144K which is the size of the initramfs partition.
|
2018-10-17 18:46:19 +00:00
|
|
|
#
|
|
|
|
# The "application" partition is just blank. You can put anything
|
|
|
|
# there when using OpenWRT. We just use that to create the
|
|
|
|
# "sysupgrade" firmware image.
|
2019-01-22 21:18:57 +00:00
|
|
|
define Build/nas4220b-sq201-images
|
2019-01-25 20:49:46 +00:00
|
|
|
mkdir -p $@.tmp
|
|
|
|
|
|
|
|
mv $@ $@.tmp/rd.gz
|
|
|
|
dd if=/dev/zero of=$@.tmp/hddapp.tgz bs=6144k count=1
|
|
|
|
cp $(IMAGE_KERNEL) $@.tmp/zImage
|
|
|
|
cp ./ImageInfo-$(1) $@.tmp/ImageInfo
|
|
|
|
|
|
|
|
(cd $@.tmp; tar --sort=name --owner=0 --group=0 --numeric-owner -czf $@ * \
|
2019-01-25 20:42:28 +00:00
|
|
|
$(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)"))
|
2019-01-25 20:49:46 +00:00
|
|
|
|
|
|
|
rm -rf $@.tmp
|
2014-11-19 14:09:10 +00:00
|
|
|
endef
|
|
|
|
|
2018-04-29 16:07:05 +00:00
|
|
|
# WBD-111 and WBD-222:
|
|
|
|
# work around the bootloader's bug with extra nops
|
|
|
|
# FIXME: is this really needed now that we no longer append the code
|
|
|
|
# to change the machine ID number? Needs testing on Wiliboard.
|
|
|
|
define Build/wbd-nops
|
|
|
|
mv $@ $@.tmp
|
|
|
|
echo -en "\x00\x00\xa0\xe1\x00\x00\xa0\xe1\x00\x00\xa0\xe1\x00\x00\xa0\xe1" > $@
|
|
|
|
cat $@.tmp >> $@
|
|
|
|
rm -f $@.tmp
|
2009-05-11 18:27:33 +00:00
|
|
|
endef
|
|
|
|
|
2018-04-29 16:07:05 +00:00
|
|
|
# All DTB files are prefixed with "gemini-"
|
|
|
|
define Device/Default
|
2019-01-16 20:57:53 +00:00
|
|
|
PROFILES := Default
|
2018-04-29 16:07:05 +00:00
|
|
|
KERNEL_DEPENDS = $$(wildcard $(DTS_DIR)/$$(DEVICE_DTS).dts)
|
|
|
|
KERNEL_NAME := zImage
|
|
|
|
KERNEL := kernel-bin | append-dtb
|
|
|
|
BLOCKSIZE := 128k
|
2009-05-11 18:27:33 +00:00
|
|
|
endef
|
|
|
|
|
2018-04-29 16:07:05 +00:00
|
|
|
# A reasonable set of default packages handling the NAS type
|
|
|
|
# of devices out of the box (former NAS42x0 IcyBox defaults)
|
|
|
|
GEMINI_NAS_PACKAGES:=kmod-md-mod kmod-md-linear kmod-md-multipath \
|
|
|
|
kmod-md-raid0 kmod-md-raid1 kmod-md-raid10 kmod-md-raid456 \
|
2018-05-04 15:18:51 +00:00
|
|
|
kmod-fs-btrfs kmod-fs-cifs kmod-fs-nfs \
|
2018-04-29 16:07:05 +00:00
|
|
|
kmod-fs-nfsd kmod-fs-ntfs kmod-fs-reiserfs kmod-fs-vfat \
|
|
|
|
kmod-nls-utf8 kmod-usb-storage-extras \
|
|
|
|
samba36-server mdadm cfdisk fdisk e2fsprogs badblocks
|
|
|
|
|
2019-01-25 21:04:40 +00:00
|
|
|
define Device/dlink_dir-685
|
2018-04-29 16:07:05 +00:00
|
|
|
DEVICE_TITLE := D-Link DIR-685 Xtreme N Storage Router
|
2019-01-25 21:04:40 +00:00
|
|
|
DEVICE_DTS := gemini-dlink-dir-685
|
2018-05-01 18:33:17 +00:00
|
|
|
DEVICE_PACKAGES := $(GEMINI_NAS_PACKAGES) \
|
2018-06-13 15:47:58 +00:00
|
|
|
kmod-switch-rtl8366rb swconfig \
|
|
|
|
rt2800-pci
|
2019-01-25 20:53:12 +00:00
|
|
|
IMAGES := factory.bin
|
|
|
|
IMAGE/factory.bin := dir685-images
|
2009-05-11 18:27:33 +00:00
|
|
|
endef
|
2019-01-25 21:04:40 +00:00
|
|
|
TARGET_DEVICES += dlink_dir-685
|
2009-05-11 18:27:33 +00:00
|
|
|
|
2019-01-25 21:04:40 +00:00
|
|
|
define Device/dlink_dns-313
|
2018-04-29 16:07:05 +00:00
|
|
|
DEVICE_TITLE := D-Link DNS-313 1-Bay Network Storage Enclosure
|
2019-01-25 21:04:40 +00:00
|
|
|
DEVICE_DTS := gemini-dlink-dns-313
|
2018-04-29 16:07:05 +00:00
|
|
|
DEVICE_PACKAGES := $(GEMINI_NAS_PACKAGES)
|
2019-01-25 20:53:12 +00:00
|
|
|
IMAGES := factory.bin
|
|
|
|
IMAGE/factory.bin := dns313-images
|
2009-05-11 18:27:33 +00:00
|
|
|
endef
|
2019-01-25 21:04:40 +00:00
|
|
|
TARGET_DEVICES += dlink_dns-313
|
2009-05-11 18:27:33 +00:00
|
|
|
|
2019-01-22 21:18:57 +00:00
|
|
|
define Device/nas4220b-sq201
|
2019-01-25 20:55:12 +00:00
|
|
|
IMAGES := factory.bin
|
2019-01-25 20:53:12 +00:00
|
|
|
IMAGE/factory.bin := append-rootfs | pad-to 6144k | nas4220b-sq201-images $(1)
|
2019-01-22 21:18:57 +00:00
|
|
|
DEVICE_PACKAGES := $(GEMINI_NAS_PACKAGES)
|
|
|
|
endef
|
|
|
|
|
2019-01-25 21:04:40 +00:00
|
|
|
define Device/raidsonic_ib-4220-b
|
2019-01-22 21:18:57 +00:00
|
|
|
$(Device/nas4220b-sq201)
|
2018-04-29 16:07:05 +00:00
|
|
|
DEVICE_TITLE := Raidsonic NAS IB-4220-B
|
2019-01-25 21:04:40 +00:00
|
|
|
DEVICE_DTS := gemini-nas4220b
|
2018-04-29 16:07:05 +00:00
|
|
|
endef
|
2019-01-25 21:04:40 +00:00
|
|
|
TARGET_DEVICES += raidsonic_ib-4220-b
|
2010-04-16 21:03:36 +00:00
|
|
|
|
2019-01-25 21:04:40 +00:00
|
|
|
define Device/teltonika_rut1xx
|
2018-04-29 16:07:05 +00:00
|
|
|
DEVICE_TITLE := Teltonika RUT1xx
|
2019-01-25 21:04:40 +00:00
|
|
|
DEVICE_DTS := gemini-rut1xx
|
2018-04-29 16:07:05 +00:00
|
|
|
DEVICE_PACKAGES := $(GEMINI_NAS_PACKAGES)
|
2009-05-11 18:27:33 +00:00
|
|
|
endef
|
2019-01-25 21:04:40 +00:00
|
|
|
TARGET_DEVICES += teltonika_rut1xx
|
2014-11-19 14:09:10 +00:00
|
|
|
|
2019-01-25 21:04:40 +00:00
|
|
|
define Device/itian_sq201
|
2019-01-22 21:18:57 +00:00
|
|
|
$(Device/nas4220b-sq201)
|
2018-04-29 16:07:05 +00:00
|
|
|
DEVICE_TITLE := ITian Square One SQ201
|
2019-01-25 21:04:40 +00:00
|
|
|
DEVICE_DTS := gemini-sq201
|
2019-01-22 21:18:57 +00:00
|
|
|
DEVICE_PACKAGES += rt61-pci usb2-pci
|
2018-04-29 16:07:05 +00:00
|
|
|
endef
|
2019-01-25 21:04:40 +00:00
|
|
|
TARGET_DEVICES += itian_sq201
|
2018-04-29 16:07:05 +00:00
|
|
|
|
2019-01-25 21:04:40 +00:00
|
|
|
define Device/wiliboard_wbd111
|
2018-04-29 16:07:05 +00:00
|
|
|
DEVICE_TITLE := Wiliboard WBD-111
|
2019-01-25 21:04:40 +00:00
|
|
|
DEVICE_DTS := gemini-wbd111
|
2018-04-29 16:07:05 +00:00
|
|
|
KERNEL := kernel-bin | append-dtb | wbd-nops
|
|
|
|
endef
|
2019-01-25 21:04:40 +00:00
|
|
|
TARGET_DEVICES += wiliboard_wbd111
|
2018-04-29 16:07:05 +00:00
|
|
|
|
2019-01-25 21:04:40 +00:00
|
|
|
define Device/wiliboard_wbd222
|
2018-04-29 16:07:05 +00:00
|
|
|
DEVICE_TITLE := Wiliboard WBD-222
|
2019-01-25 21:04:40 +00:00
|
|
|
DEVICE_DTS := gemini-wbd222
|
2018-04-29 16:07:05 +00:00
|
|
|
KERNEL := kernel-bin | append-dtb | wbd-nops
|
2014-11-19 14:09:10 +00:00
|
|
|
endef
|
2019-01-25 21:04:40 +00:00
|
|
|
TARGET_DEVICES += wiliboard_wbd222
|
2009-05-11 18:27:33 +00:00
|
|
|
|
|
|
|
$(eval $(call BuildImage))
|