Move board related configurations to board file

This commit is contained in:
Gunjan Gupta 2023-12-23 00:17:31 +05:30
parent 8272285a64
commit e7b2090c73
4 changed files with 16 additions and 22 deletions

View File

@ -12,3 +12,11 @@ HAS_VIDEO_OUTPUT="no"
KERNEL_TARGET="legacy,current,edge"
KERNEL_TEST_TARGET="current"
BOOT_FDT_FILE="sun8i-h3-nanopi-r1.dtb"
function post_family_tweaks__nanopi_r1_related_configs() {
# rename eth1 to wan0
echo 'SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*",ATTR{address}=="00:00:00:00:00:00",ATTR{dev_id}=="0x0", ATTR{type}=="1",KERNEL=="eth1", NAME="wan0"' > $SDCARD/etc/udev/rules.d/70-persisetn-net.rules
# change default console to tty1 which is wired to the chasis
sed -i "s/ttyS0/ttyS1/" $SDCARD/boot/boot.cmd
mkimage -C none -A arm -T script -d $SDCARD/boot/boot.cmd $SDCARD/boot/boot.scr
}

View File

@ -9,3 +9,11 @@ SERIALCON="ttyS0,ttyGS0"
HAS_VIDEO_OUTPUT="no"
KERNEL_TARGET="current,edge"
PACKAGE_LIST_DESKTOP_BOARD="xinput-calibrator"
function post_family_tweaks_bsp__som204_a20() {
# BT
install -m 755 $SRC/packages/bsp/olinuxino/usr/bin/rtk_hciattach $destination/usr/bin
cp $SRC/packages/bsp/olinuxino/lib/systemd/system/olinuxino-bluetooth.service $destination/lib/systemd/system
# Copy fbdev configuration
cp $SRC/packages/bsp/olinuxino/etc/X11/xorg.conf.d/02-olinuxino-hdmi-fbdev.conf $destination/etc/X11/xorg.conf.d/
}

View File

@ -10,15 +10,3 @@ source "${BASH_SOURCE%/*}/include/sunxi_common.inc"
OVERLAY_PREFIX='sun7i-a20'
[[ -z $CPUMIN ]] && CPUMIN=480000
[[ -z $CPUMAX ]] && CPUMAX=1010000
family_tweaks_bsp_s() {
if [[ $BOARD == olimex-som204-a20 ]]; then
# BT
install -m 755 $SRC/packages/bsp/olinuxino/usr/bin/rtk_hciattach $destination/usr/bin
cp $SRC/packages/bsp/olinuxino/lib/systemd/system/olinuxino-bluetooth.service $destination/lib/systemd/system
# Copy fbdev configuration
cp $SRC/packages/bsp/olinuxino/etc/X11/xorg.conf.d/02-olinuxino-hdmi-fbdev.conf $destination/etc/X11/xorg.conf.d/
fi
}

View File

@ -15,13 +15,3 @@ fi
[[ -z $CPUMIN ]] && CPUMIN=480000
[[ -z $CPUMAX ]] && CPUMAX=1400000
family_tweaks_s() {
if [[ ${BOARD} == nanopi-r1 ]]; then
# rename eth1 to wan0
echo 'SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*",ATTR{address}=="00:00:00:00:00:00",ATTR{dev_id}=="0x0", ATTR{type}=="1",KERNEL=="eth1", NAME="wan0"' > $SDCARD/etc/udev/rules.d/70-persisetn-net.rules
# change default console to tty1 which is wired to the chasis
sed -i "s/ttyS0/ttyS1/" $SDCARD/boot/boot.cmd
mkimage -C none -A arm -T script -d $SDCARD/boot/boot.cmd $SDCARD/boot/boot.scr
fi
}