Initial commit
Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
This commit is contained in:
8
target/linux/mxs/image/Config.in
Normal file
8
target/linux/mxs/image/Config.in
Normal file
@@ -0,0 +1,8 @@
|
||||
config MXS_SD_BOOT_PARTSIZE
|
||||
int "Boot (SD Card) filesystem partition size (in MB)"
|
||||
depends on TARGET_mxs
|
||||
default 8
|
||||
help
|
||||
On the Olimex OLinuXino boards, mainline U-Boot loads the
|
||||
linux kernel and device tree file from a FAT partition.
|
||||
The default value of 8 MB should be more than adequate.
|
||||
82
target/linux/mxs/image/Makefile
Normal file
82
target/linux/mxs/image/Makefile
Normal file
@@ -0,0 +1,82 @@
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
#
|
||||
# Copyright (C) 2013-2015 OpenWrt.org
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
include $(INCLUDE_DIR)/image.mk
|
||||
|
||||
FAT32_BLOCK_SIZE=1024
|
||||
FAT32_BLOCKS=$(shell echo $$(($(CONFIG_MXS_SD_BOOT_PARTSIZE)*1024*1024/$(FAT32_BLOCK_SIZE))))
|
||||
|
||||
KERNEL_LOADADDR:=0x40008000
|
||||
|
||||
define Build/mxs-sdcard-ext4-ext4
|
||||
./gen_sdcard_ext4_ext4.sh \
|
||||
$@ \
|
||||
$(STAGING_DIR_IMAGE)/$(DEVICE_NAME)/u-boot.sb \
|
||||
$(IMAGE_ROOTFS) \
|
||||
$(CONFIG_TARGET_ROOTFS_PARTSIZE)
|
||||
endef
|
||||
|
||||
define Build/mxs-sdcard-vfat-ext4
|
||||
rm -f $@.boot
|
||||
mkfs.fat $@.boot -C $(FAT32_BLOCKS)
|
||||
|
||||
mcopy -i $@.boot $(DTS_DIR)/$(DEVICE_DTS).dtb ::$(DEVICE_DTS).dtb
|
||||
mcopy -i $@.boot $(IMAGE_KERNEL) ::uImage
|
||||
|
||||
./gen_sdcard_vfat_ext4.sh \
|
||||
$@ \
|
||||
$(STAGING_DIR_IMAGE)/$(DEVICE_NAME)/u-boot.sb \
|
||||
$@.boot \
|
||||
$(IMAGE_ROOTFS) \
|
||||
$(CONFIG_MXS_SD_BOOT_PARTSIZE) \
|
||||
$(CONFIG_TARGET_ROOTFS_PARTSIZE)
|
||||
endef
|
||||
|
||||
define Device/Default
|
||||
PROFILES := Default
|
||||
KERNEL_NAME := zImage
|
||||
KERNEL := kernel-bin | uImage none
|
||||
IMAGES := sdcard.img.gz
|
||||
DTS_DIR := $(DTS_DIR)/nxp/mxs
|
||||
DEVICE_DTS = $$(SOC)-$(lastword $(subst _, ,$(1)))
|
||||
endef
|
||||
|
||||
define Device/i2se_duckbill
|
||||
DEVICE_VENDOR := I2SE
|
||||
DEVICE_MODEL := Duckbill
|
||||
DEVICE_PACKAGES := -dnsmasq -firewall -ppp -ip6tables -iptables -6relayd -mtd \
|
||||
uboot-envtools kmod-leds-gpio -kmod-ipt-nathelper
|
||||
SUPPORTED_DEVICES:=i2se,duckbill
|
||||
SOC:=imx28
|
||||
DEVICE_DTS:=imx28-duckbill
|
||||
IMAGE/sdcard.img.gz = mxs-sdcard-ext4-ext4 | append-metadata | gzip
|
||||
endef
|
||||
TARGET_DEVICES += i2se_duckbill
|
||||
|
||||
define Device/olinuxino_maxi
|
||||
DEVICE_VENDOR := Olimex
|
||||
DEVICE_MODEL := OLinuXino Maxi
|
||||
DEVICE_PACKAGES := kmod-usb-net-smsc95xx kmod-pinctrl-mcp23s08-i2c \
|
||||
kmod-pinctrl-mcp23s08-spi kmod-leds-gpio kmod-sound-core
|
||||
SUPPORTED_DEVICES:=olimex,imx23-olinuxino
|
||||
SOC:=imx23
|
||||
DEVICE_DTS:=imx23-olinuxino
|
||||
IMAGE/sdcard.img.gz = mxs-sdcard-vfat-ext4 | append-metadata | gzip
|
||||
endef
|
||||
TARGET_DEVICES += olinuxino_maxi
|
||||
|
||||
define Device/olinuxino_micro
|
||||
DEVICE_VENDOR := Olimex
|
||||
DEVICE_MODEL := OLinuXino Micro
|
||||
DEVICE_PACKAGES := kmod-pinctrl-mcp23s08-spi kmod-pinctrl-mcp23s08-i2c \
|
||||
kmod-leds-gpio
|
||||
SUPPORTED_DEVICES:=olimex,imx23-olinuxino
|
||||
SOC:=imx23
|
||||
DEVICE_DTS:=imx23-olinuxino
|
||||
IMAGE/sdcard.img.gz = mxs-sdcard-vfat-ext4 | append-metadata | gzip
|
||||
endef
|
||||
TARGET_DEVICES += olinuxino_micro
|
||||
|
||||
$(eval $(call BuildImage))
|
||||
30
target/linux/mxs/image/gen_sdcard_ext4_ext4.sh
Executable file
30
target/linux/mxs/image/gen_sdcard_ext4_ext4.sh
Executable file
@@ -0,0 +1,30 @@
|
||||
#!/bin/sh
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
#
|
||||
# Copyright (C) 2015 OpenWrt.org
|
||||
|
||||
set -x
|
||||
[ $# -eq 4 ] || {
|
||||
echo "SYNTAX: $0 <file> <u-boot.sb image> <rootfs image> <rootfs size>"
|
||||
exit 1
|
||||
}
|
||||
|
||||
OUTPUT="$1"
|
||||
UBOOT="$2"
|
||||
ROOTFS="$3"
|
||||
ROOTFSSIZE="$4"
|
||||
|
||||
head=4
|
||||
sect=63
|
||||
|
||||
# set the Boot stream partition size to 1M
|
||||
set $(ptgen -o $OUTPUT -h $head -s $sect -l 1024 -t 53 -p 1M -t 83 -p ${ROOTFSSIZE}M -t 83 -p ${ROOTFSSIZE}M)
|
||||
|
||||
ROOTFS1OFFSET="$(($3 / 512))"
|
||||
ROOTFS1SIZE="$(($4 / 512))"
|
||||
ROOTFS2OFFSET="$(($5 / 512))"
|
||||
ROOTFS2SIZE="$(($6 / 512))"
|
||||
|
||||
dd bs=512 if="$ROOTFS" of="$OUTPUT" seek="$ROOTFS1OFFSET" conv=notrunc
|
||||
dd bs=512 if="$ROOTFS" of="$OUTPUT" seek="$ROOTFS2OFFSET" conv=notrunc
|
||||
sdimage -d "$OUTPUT" -f "$UBOOT"
|
||||
34
target/linux/mxs/image/gen_sdcard_vfat_ext4.sh
Executable file
34
target/linux/mxs/image/gen_sdcard_vfat_ext4.sh
Executable file
@@ -0,0 +1,34 @@
|
||||
#!/bin/sh
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
#
|
||||
# Copyright (C) 2015 OpenWrt.org
|
||||
|
||||
set -x
|
||||
[ $# -eq 6 ] || {
|
||||
echo "SYNTAX: $0 <file> <u-boot.sb image> <bootfs image> <rootfs image> <bootfs size> <rootfs size>"
|
||||
exit 1
|
||||
}
|
||||
|
||||
OUTPUT="$1"
|
||||
UBOOT="$2"
|
||||
BOOTFS="$3"
|
||||
ROOTFS="$4"
|
||||
BOOTFSSIZE="$5"
|
||||
ROOTFSSIZE="$6"
|
||||
|
||||
head=4
|
||||
sect=63
|
||||
|
||||
# Set the u-boot storage to 2M
|
||||
set $(ptgen -o $OUTPUT -h $head -s $sect -l 1024 -t 53 -p 2M -t c -p ${BOOTFSSIZE}M -t 83 -p ${ROOTFSSIZE}M)
|
||||
|
||||
UBOOTOFFSET="$(($1 / 512))"
|
||||
UBOOTSIZE="$(($2 / 512))"
|
||||
BOOTOFFSET="$(($3 / 512))"
|
||||
BOOTSIZE="$(($4 / 512))"
|
||||
ROOTFSOFFSET="$(($5 / 512))"
|
||||
ROOTFSSIZE="$(($6 / 512))"
|
||||
|
||||
dd bs=512 if="$BOOTFS" of="$OUTPUT" seek="$BOOTOFFSET" conv=notrunc
|
||||
dd bs=512 if="$ROOTFS" of="$OUTPUT" seek="$ROOTFSOFFSET" conv=notrunc
|
||||
sdimage -d "$OUTPUT" -f "$UBOOT"
|
||||
Reference in New Issue
Block a user