Migrate to new image generation and introduce sdcard generation (based on sunxi). Profile now generated via image/Makefile instead of profiles/ directory. Signed-off-by: Alexander Couzens <lynxis@fe80.eu>master
parent
23fc55e723
commit
9b8e274e1b
@ -0,0 +1,5 @@ |
||||
config OMAP_SD_BOOT_PARTSIZE |
||||
int "Boot (SD Card) filesystem partition size (in MB)" |
||||
depends on TARGET_omap |
||||
default 20 |
||||
|
@ -0,0 +1,33 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
# |
||||
# Copyright (C) 2013 OpenWrt.org |
||||
# |
||||
# This is free software, licensed under the GNU General Public License v2. |
||||
# See /LICENSE for more information. |
||||
# |
||||
|
||||
set -x |
||||
[ $# -eq 5 ] || { |
||||
echo "SYNTAX: $0 <file> <bootfs image> <rootfs image> <bootfs size> <rootfs size>" |
||||
exit 1 |
||||
} |
||||
|
||||
OUTPUT="$1" |
||||
BOOTFS="$2" |
||||
ROOTFS="$3" |
||||
BOOTFSSIZE="$4" |
||||
ROOTFSSIZE="$5" |
||||
|
||||
head=4 |
||||
sect=63 |
||||
|
||||
set `ptgen -o $OUTPUT -h $head -s $sect -l 1024 -t c -p ${BOOTFSSIZE}M -t 83 -p ${ROOTFSSIZE}M` |
||||
|
||||
BOOTOFFSET="$(($1 / 512))" |
||||
BOOTSIZE="$(($2 / 512))" |
||||
ROOTFSOFFSET="$(($3 / 512))" |
||||
ROOTFSSIZE="$(($4 / 512))" |
||||
|
||||
dd bs=512 if="$BOOTFS" of="$OUTPUT" seek="$BOOTOFFSET" conv=notrunc |
||||
dd bs=512 if="$ROOTFS" of="$OUTPUT" seek="$ROOTFSOFFSET" conv=notrunc |
@ -1,23 +0,0 @@ |
||||
#
|
||||
# Copyright (C) 2015 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
define Profile/BEAGLEBOARD |
||||
NAME:=EBV BeagleBoard
|
||||
DEFAULT_PACKAGES += \
|
||||
kmod-usb-net kmod-usb-net-asix \
|
||||
kmod-usb-net-asix-ax88179 kmod-usb-net-hso \
|
||||
kmod-usb-net-kaweth kmod-usb-net-pegasus \
|
||||
kmod-usb-net-mcs7830 kmod-usb-net-smsc95xx \
|
||||
kmod-usb-net-dm9601-ether
|
||||
endef |
||||
|
||||
define Profile/BEAGLEBOARD/Description |
||||
Package set for the BEAGLEBOARD and similar devices.
|
||||
Contains various USB-NET drivers for boards without Ethernet.
|
||||
endef |
||||
|
||||
$(eval $(call Profile,BEAGLEBOARD)) |
Loading…
Reference in new issue