mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-07-24 13:36:31 +00:00
Support dual bootloader (#27)
* Support dual bootloader Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * Make ova running Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * fix uboot Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * Update supervisor Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * Support all rpi Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>
This commit is contained in:
parent
f9f8b91b31
commit
a426046bcc
@ -4,10 +4,11 @@ Hass.io OS based on [buildroot](https://buildroot.org/). It's a hypervisor for D
|
||||
## Focus
|
||||
|
||||
- Linux kernel 4.14 (LT)
|
||||
- Barebox as bootloader
|
||||
- Barebox as bootloader on EFI
|
||||
- U-Boot as bootloader on IoT
|
||||
- RAUC for OTA updates
|
||||
- SquashFS LZ4 as filesystem
|
||||
- Docker 17.12.1
|
||||
- Docker 18.03.1
|
||||
- AppArmor protected
|
||||
- ZRAM LZ4 for /tmp, /var, swap
|
||||
- Run every supervisor
|
||||
|
@ -1,12 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
global linux.bootargs.dyn.root="root=PARTUUID=8d3d53e3-6d49-4c38-8349-aff6859e82fd rootfstype=squashfs ro"
|
||||
|
||||
mkdir -p /mnt/system
|
||||
mount -t squashfs /dev/disk0.hassos-system0 /mnt/system
|
||||
|
||||
if [ -f "/mnt/system/boot/bzImage" ]; then
|
||||
global bootm.image="/mnt/system/boot/bzImage"
|
||||
else
|
||||
global bootm.image="/mnt/system/boot/zImage"
|
||||
fi
|
@ -1,13 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
global linux.bootargs.dyn.root="root=PARTUUID=a3ec664e-32ce-4665-95ea-7ae90ce9aa20 rootfstype=squashfs ro"
|
||||
|
||||
mkdir -p /mnt/system
|
||||
mount -t squashfs /dev/disk0.hassos-system1 /mnt/system
|
||||
|
||||
if [ -f "/mnt/system/boot/bzImage" ]; then
|
||||
global bootm.image="/mnt/system/boot/bzImage"
|
||||
else
|
||||
global bootm.image="/mnt/system/boot/zImage"
|
||||
fi
|
||||
|
@ -1 +0,0 @@
|
||||
system0 system1
|
@ -1,3 +1,4 @@
|
||||
BOARD_ID=ova
|
||||
BOARD_NAME="Open Virtual Appliance"
|
||||
CHASSIS=vm
|
||||
BOOTLOADER=barebox
|
||||
|
@ -18,13 +18,15 @@ mkdir -p ${BOOT_DATA}/EFI/BOOT
|
||||
mkdir -p ${BOOT_DATA}/EFI/barebox
|
||||
|
||||
cp ${BINARIES_DIR}/barebox.bin ${BOOT_DATA}/EFI/BOOT/BOOTx64.EFI
|
||||
cp ${BOARD_DIR}/barebox-state-efi.dtb ${BOOT_DATA}/EFI/barebox/state.dtb
|
||||
cp ${BR2_EXTERNAL_HASSOS_PATH}/misc/barebox-state-efi.dtb ${BOOT_DATA}/EFI/barebox/state.dtb
|
||||
|
||||
echo "console=tty1" > ${BOOT_DIR}/cmdline.txt
|
||||
echo "console=tty1" > ${BOOT_DATA}/cmdline.txt
|
||||
|
||||
# Create other layers
|
||||
create_boot_image ${BINARIES_DIR}
|
||||
create_overlay_image ${BINARIES_DIR}
|
||||
create_kernel_image ${BINARIES_DIR} bzImage
|
||||
create_barebox_state_image ${BINARIES_DIR}
|
||||
|
||||
create_disk_image ${BINARIES_DIR} ${BINARIES_DIR}/harddisk.img 6
|
||||
|
||||
|
Binary file not shown.
@ -1,4 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Ignore cmdline.txt on raspberry pi
|
||||
global linux.bootargs.base=""
|
@ -1,6 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
memcpy -d /tmp/rpi.dtb 0x02008000 0 0x8000
|
||||
oftree -f -l /tmp/rpi.dtb
|
||||
of_overlay /env/data/barebox-state-rpi.dtbo
|
||||
fix_bootargs
|
@ -1,15 +0,0 @@
|
||||
CONFIG_ARCH_BCM283X=y
|
||||
CONFIG_AEABI=y
|
||||
CONFIG_ARM_OPTIMZED_STRING_FUNCTIONS=y
|
||||
CONFIG_ARM_UNWIND=y
|
||||
CONFIG_MMU=y
|
||||
CONFIG_MALLOC_TLSF=y
|
||||
CONFIG_KALLSYMS=y
|
||||
CONFIG_IMAGE_COMPRESSION_NONE=y
|
||||
CONFIG_CMD_OF_OVERLAY=y
|
||||
CONFIG_CMD_FIX_BOOTARGS=y
|
||||
# CONFIG_SPI is not set
|
||||
CONFIG_MCI=y
|
||||
CONFIG_MCI_BCM283X=y
|
||||
# CONFIG_PINCTRL is not set
|
||||
CONFIG_REGULATOR=y
|
@ -1,30 +0,0 @@
|
||||
From 6344ec5c84a49c2df4c2f26b52d317a34e3bc0c7 Mon Sep 17 00:00:00 2001
|
||||
From: Pascal Vizeli <pvizeli@syshack.ch>
|
||||
Date: Mon, 4 Jun 2018 07:55:46 +0000
|
||||
Subject: [PATCH 1/2] ARM: dts: bcm2836-rpi-2: re-enable booting from SD card
|
||||
|
||||
Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>
|
||||
---
|
||||
arch/arm/dts/bcm2836-rpi-2.dts | 9 +++++++++
|
||||
1 file changed, 9 insertions(+)
|
||||
|
||||
diff --git a/arch/arm/dts/bcm2836-rpi-2.dts b/arch/arm/dts/bcm2836-rpi-2.dts
|
||||
index 42b6abb18..2fa1c8bb4 100644
|
||||
--- a/arch/arm/dts/bcm2836-rpi-2.dts
|
||||
+++ b/arch/arm/dts/bcm2836-rpi-2.dts
|
||||
@@ -9,3 +9,12 @@
|
||||
reg = <0x0 0x0>;
|
||||
};
|
||||
};
|
||||
+
|
||||
+&sdhci {
|
||||
+ status = "okay";
|
||||
+};
|
||||
+
|
||||
+&sdhost {
|
||||
+ status = "disabled";
|
||||
+};
|
||||
+
|
||||
--
|
||||
2.17.0
|
||||
|
@ -1,167 +0,0 @@
|
||||
From 3fe92c12e01e35cc97fbd92d8ae098ac583cfa1f Mon Sep 17 00:00:00 2001
|
||||
From: Pascal Vizeli <pvizeli@syshack.ch>
|
||||
Date: Mon, 4 Jun 2018 09:25:40 +0000
|
||||
Subject: [PATCH 3/3] Add HassOS bootchoiser state
|
||||
|
||||
Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>
|
||||
---
|
||||
arch/arm/dts/bcm2835-rpi.dts | 69 ++++++++++++++++++++++++++++++++++
|
||||
arch/arm/dts/bcm2836-rpi-2.dts | 68 +++++++++++++++++++++++++++++++++
|
||||
2 files changed, 137 insertions(+)
|
||||
|
||||
diff --git a/arch/arm/dts/bcm2835-rpi.dts b/arch/arm/dts/bcm2835-rpi.dts
|
||||
index 22d60e961..3357d06b7 100644
|
||||
--- a/arch/arm/dts/bcm2835-rpi.dts
|
||||
+++ b/arch/arm/dts/bcm2835-rpi.dts
|
||||
@@ -13,3 +13,72 @@
|
||||
&sdhost {
|
||||
status = "disabled";
|
||||
};
|
||||
+
|
||||
+/ {
|
||||
+
|
||||
+ aliases {
|
||||
+ state = &state;
|
||||
+ };
|
||||
+
|
||||
+ state: state {
|
||||
+ #address-cells = <1>;
|
||||
+ #size-cells = <1>;
|
||||
+ magic = <0xef98423f>;
|
||||
+ compatible = "barebox,state";
|
||||
+ backend = <&backend_state>;
|
||||
+ backend-type = "raw";
|
||||
+ backend-stridesize = <4048>;
|
||||
+
|
||||
+ bootstate {
|
||||
+ #address-cells = <1>;
|
||||
+ #size-cells = <1>;
|
||||
+
|
||||
+ system0 {
|
||||
+ #address-cells = <1>;
|
||||
+ #size-cells = <1>;
|
||||
+ remaining_attempts@0 {
|
||||
+ reg = <0x0 0x4>;
|
||||
+ type = "uint32";
|
||||
+ default = <3>;
|
||||
+ };
|
||||
+ priority@4 {
|
||||
+ reg = <0x4 0x4>;
|
||||
+ type = "uint32";
|
||||
+ default = <20>;
|
||||
+ };
|
||||
+ };
|
||||
+ system1 {
|
||||
+ #address-cells = <1>;
|
||||
+ #size-cells = <1>;
|
||||
+ remaining_attempts@8 {
|
||||
+ reg = <0x8 0x4>;
|
||||
+ type = "uint32";
|
||||
+ default = <0>;
|
||||
+ };
|
||||
+ priority@c {
|
||||
+ reg = <0xc 0x4>;
|
||||
+ type = "uint32";
|
||||
+ default = <10>;
|
||||
+ };
|
||||
+ };
|
||||
+ last_chosen@10 {
|
||||
+ reg = <0x10 0x4>;
|
||||
+ type = "uint32";
|
||||
+ };
|
||||
+ };
|
||||
+ };
|
||||
+};
|
||||
+
|
||||
+&sdhci {
|
||||
+ partitions {
|
||||
+ #address-cells = <1>;
|
||||
+ #size-cells = <1>;
|
||||
+ compatible = "fixed-partitions";
|
||||
+
|
||||
+ backend_state: partition@22100000 {
|
||||
+ label = "state";
|
||||
+ reg = <0x22100000 0x800000>;
|
||||
+ };
|
||||
+ };
|
||||
+};
|
||||
+
|
||||
diff --git a/arch/arm/dts/bcm2836-rpi-2.dts b/arch/arm/dts/bcm2836-rpi-2.dts
|
||||
index bdee1296e..e41def570 100644
|
||||
--- a/arch/arm/dts/bcm2836-rpi-2.dts
|
||||
+++ b/arch/arm/dts/bcm2836-rpi-2.dts
|
||||
@@ -14,3 +14,71 @@
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
+/ {
|
||||
+
|
||||
+ aliases {
|
||||
+ state = &state;
|
||||
+ };
|
||||
+
|
||||
+ state: state {
|
||||
+ #address-cells = <1>;
|
||||
+ #size-cells = <1>;
|
||||
+ magic = <0xef98423f>;
|
||||
+ compatible = "barebox,state";
|
||||
+ backend = <&backend_state>;
|
||||
+ backend-type = "raw";
|
||||
+ backend-stridesize = <4048>;
|
||||
+
|
||||
+ bootstate {
|
||||
+ #address-cells = <1>;
|
||||
+ #size-cells = <1>;
|
||||
+
|
||||
+ system0 {
|
||||
+ #address-cells = <1>;
|
||||
+ #size-cells = <1>;
|
||||
+ remaining_attempts@0 {
|
||||
+ reg = <0x0 0x4>;
|
||||
+ type = "uint32";
|
||||
+ default = <3>;
|
||||
+ };
|
||||
+ priority@4 {
|
||||
+ reg = <0x4 0x4>;
|
||||
+ type = "uint32";
|
||||
+ default = <20>;
|
||||
+ };
|
||||
+ };
|
||||
+ system1 {
|
||||
+ #address-cells = <1>;
|
||||
+ #size-cells = <1>;
|
||||
+ remaining_attempts@8 {
|
||||
+ reg = <0x8 0x4>;
|
||||
+ type = "uint32";
|
||||
+ default = <0>;
|
||||
+ };
|
||||
+ priority@c {
|
||||
+ reg = <0xc 0x4>;
|
||||
+ type = "uint32";
|
||||
+ default = <10>;
|
||||
+ };
|
||||
+ };
|
||||
+ last_chosen@10 {
|
||||
+ reg = <0x10 0x4>;
|
||||
+ type = "uint32";
|
||||
+ };
|
||||
+ };
|
||||
+ };
|
||||
+};
|
||||
+
|
||||
+&sdhci {
|
||||
+ partitions {
|
||||
+ #address-cells = <1>;
|
||||
+ #size-cells = <1>;
|
||||
+ compatible = "fixed-partitions";
|
||||
+
|
||||
+ backend_state: partition@22100000 {
|
||||
+ label = "state";
|
||||
+ reg = <0x22100000 0x800000>;
|
||||
+ };
|
||||
+ };
|
||||
+};
|
||||
+
|
||||
--
|
||||
2.17.0
|
||||
|
@ -1,42 +0,0 @@
|
||||
From 19ab0b433893cc7d16e8f4a6052f0f784131c43a Mon Sep 17 00:00:00 2001
|
||||
From: Pascal Vizeli <pvizeli@syshack.ch>
|
||||
Date: Sat, 2 Jun 2018 22:08:31 +0000
|
||||
Subject: [PATCH 1/1] common: state: allow to overlay state backend
|
||||
|
||||
This allow to use overlay for state backends. I.e. on raspberry you need
|
||||
use barebox with SDHCI (slow) and after linux boot it will use SDHOST driver.
|
||||
But the problem now is, that the state is on SDHCI and dt-utils need it on
|
||||
SDHOST. Actual it is not possible to overwrite this.
|
||||
|
||||
Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>
|
||||
---
|
||||
common/state/state.c | 13 +++++++++++--
|
||||
1 file changed, 11 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/common/state/state.c b/common/state/state.c
|
||||
index 25d950211..e6259043f 100644
|
||||
--- a/common/state/state.c
|
||||
+++ b/common/state/state.c
|
||||
@@ -494,8 +494,17 @@ static int of_state_fixup(struct device_node *root, void *ctx)
|
||||
}
|
||||
|
||||
/* backend phandle */
|
||||
- backend_node = of_find_node_by_reproducible_name(root,
|
||||
- state->backend_reproducible_name);
|
||||
+ if (node) {
|
||||
+ ret = of_property_read_u32(node, "backend", &phandle);
|
||||
+ if (ret)
|
||||
+ goto out;
|
||||
+
|
||||
+ backend_node = of_find_node_by_phandle_from(phandle, root);
|
||||
+ } else {
|
||||
+ backend_node = of_find_node_by_reproducible_name(root,
|
||||
+ state->backend_reproducible_name);
|
||||
+ }
|
||||
+
|
||||
if (!backend_node) {
|
||||
ret = -ENODEV;
|
||||
goto out;
|
||||
--
|
||||
2.17.0
|
||||
|
@ -16,7 +16,9 @@ IMAGE_FILE=${BINARIES_DIR}/${HASSOS_ID}_${BOARD_ID}-${VERSION_MAJOR}.${VERSION_B
|
||||
rm -rf ${BOOT_DATA}
|
||||
mkdir -p ${BOOT_DATA}
|
||||
|
||||
cp ${BINARIES_DIR}/barebox.bin ${BOOT_DATA}/
|
||||
cp -t ${BOOT_DATA} \
|
||||
${BINARIES_DIR}/u-boot.bin \
|
||||
${BINARIES_DIR}/boot.scr
|
||||
cp -t ${BOOT_DATA} \
|
||||
${BINARIES_DIR}/*.dtb \
|
||||
${BINARIES_DIR}/rpi-firmware/bootcode.bin \
|
||||
@ -26,9 +28,7 @@ cp -r ${BINARIES_DIR}/rpi-firmware/overlays ${BOOT_DATA}/
|
||||
|
||||
# Update Boot options
|
||||
(
|
||||
echo "kernel=barebox.bin"
|
||||
echo "device_tree_address=0x02008000"
|
||||
echo "device_tree_end=0x0200ff00"
|
||||
echo "kernel=u-boot.bin"
|
||||
echo "disable_splash=1"
|
||||
echo "dtparam=audio=on"
|
||||
) > ${BOOT_DATA}/config.txt
|
||||
@ -38,6 +38,8 @@ echo "dwc_otg.lpm_enable=0 console=tty1" > ${BOOT_DATA}/cmdline.txt
|
||||
# Create other layers
|
||||
create_boot_image ${BINARIES_DIR}
|
||||
create_overlay_image ${BINARIES_DIR}
|
||||
create_uboot_state_image ${BINARIES_DIR}
|
||||
create_kernel_image ${BINARIES_DIR} zImage
|
||||
|
||||
create_disk_image ${BINARIES_DIR} ${IMAGE_FILE} 2
|
||||
fix_disk_image_mbr ${IMAGE_FILE}
|
||||
|
4
buildroot-external/board/raspberrypi/rpi/info
Normal file
4
buildroot-external/board/raspberrypi/rpi/info
Normal file
@ -0,0 +1,4 @@
|
||||
BOARD_ID=rpi1
|
||||
BOARD_NAME="RaspberryPi"
|
||||
CHASSIS=embedded
|
||||
BOOTLOADER=uboot
|
2
buildroot-external/board/raspberrypi/rpi/uboot.config
Normal file
2
buildroot-external/board/raspberrypi/rpi/uboot.config
Normal file
@ -0,0 +1,2 @@
|
||||
CONFIG_TARGET_RPI=y
|
||||
CONFIG_DEFAULT_DEVICE_TREE="bcm2835-rpi-b"
|
4
buildroot-external/board/raspberrypi/rpi0-w/info
Normal file
4
buildroot-external/board/raspberrypi/rpi0-w/info
Normal file
@ -0,0 +1,4 @@
|
||||
BOARD_ID=rpi0-w
|
||||
BOARD_NAME="RaspberryPi Zero-W"
|
||||
CHASSIS=embedded
|
||||
BOOTLOADER=uboot
|
2
buildroot-external/board/raspberrypi/rpi0-w/uboot.config
Normal file
2
buildroot-external/board/raspberrypi/rpi0-w/uboot.config
Normal file
@ -0,0 +1,2 @@
|
||||
CONFIG_TARGET_RPI_0_W=y
|
||||
CONFIG_DEFAULT_DEVICE_TREE="bcm2835-rpi-zero-w"
|
@ -1 +0,0 @@
|
||||
CONFIG_MACH_RPI2=y
|
@ -1,3 +1,4 @@
|
||||
BOARD_ID=rpi2
|
||||
BOARD_NAME="RaspberryPi 2"
|
||||
CHASSIS=embedded
|
||||
BOOTLOADER=uboot
|
||||
|
2
buildroot-external/board/raspberrypi/rpi2/uboot.config
Normal file
2
buildroot-external/board/raspberrypi/rpi2/uboot.config
Normal file
@ -0,0 +1,2 @@
|
||||
CONFIG_TARGET_RPI_2=y
|
||||
CONFIG_DEFAULT_DEVICE_TREE="bcm2836-rpi-2-b"
|
4
buildroot-external/board/raspberrypi/rpi3-64/info
Normal file
4
buildroot-external/board/raspberrypi/rpi3-64/info
Normal file
@ -0,0 +1,4 @@
|
||||
BOARD_ID=rpi3-64
|
||||
BOARD_NAME="RaspberryPi 3 64bit"
|
||||
CHASSIS=embedded
|
||||
BOOTLOADER=uboot
|
@ -0,0 +1,3 @@
|
||||
CONFIG_TARGET_RPI_3=y
|
||||
CONFIG_SYS_MALLOC_F_LEN=0x2000
|
||||
CONFIG_DEFAULT_DEVICE_TREE="bcm2837-rpi-3-b"
|
@ -1 +0,0 @@
|
||||
CONFIG_MACH_RPI3=y
|
@ -1,3 +1,4 @@
|
||||
BOARD_ID=rpi3
|
||||
BOARD_NAME="RaspberryPi 3"
|
||||
CHASSIS=embedded
|
||||
BOOTLOADER=uboot
|
||||
|
@ -1,295 +0,0 @@
|
||||
Those are needed to generate some of the ARM SEC and VIRT
|
||||
opcodes in a portable way.
|
||||
|
||||
Signed-off-by: Lucas Stach <l.stach at pengutronix.de>
|
||||
---
|
||||
arch/arm/include/asm/opcodes-virt.h | 39 ++++++
|
||||
arch/arm/include/asm/opcodes.h | 231 ++++++++++++++++++++++++++++++++++++
|
||||
2 files changed, 270 insertions(+)
|
||||
create mode 100644 arch/arm/include/asm/opcodes-virt.h
|
||||
create mode 100644 arch/arm/include/asm/opcodes.h
|
||||
|
||||
diff --git a/arch/arm/include/asm/opcodes-virt.h b/arch/arm/include/asm/opcodes-virt.h
|
||||
new file mode 100644
|
||||
index 000000000000..efcfdf92d9d5
|
||||
--- /dev/null
|
||||
+++ b/arch/arm/include/asm/opcodes-virt.h
|
||||
@@ -0,0 +1,39 @@
|
||||
+/*
|
||||
+ * opcodes-virt.h: Opcode definitions for the ARM virtualization extensions
|
||||
+ * Copyright (C) 2012 Linaro Limited
|
||||
+ *
|
||||
+ * This program is free software; you can redistribute it and/or modify
|
||||
+ * it under the terms of the GNU General Public License as published by
|
||||
+ * the Free Software Foundation; either version 2 of the License, or
|
||||
+ * (at your option) any later version.
|
||||
+ *
|
||||
+ * This program is distributed in the hope that it will be useful,
|
||||
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
+ * GNU General Public License for more details.
|
||||
+ *
|
||||
+ * You should have received a copy of the GNU General Public License along
|
||||
+ * with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
+ */
|
||||
+#ifndef __ASM_ARM_OPCODES_VIRT_H
|
||||
+#define __ASM_ARM_OPCODES_VIRT_H
|
||||
+
|
||||
+#include <asm/opcodes.h>
|
||||
+
|
||||
+#define __HVC(imm16) __inst_arm_thumb32( \
|
||||
+ 0xE1400070 | (((imm16) & 0xFFF0) << 4) | ((imm16) & 0x000F), \
|
||||
+ 0xF7E08000 | (((imm16) & 0xF000) << 4) | ((imm16) & 0x0FFF) \
|
||||
+)
|
||||
+
|
||||
+#define __ERET __inst_arm_thumb32( \
|
||||
+ 0xE160006E, \
|
||||
+ 0xF3DE8F00 \
|
||||
+)
|
||||
+
|
||||
+#define __MSR_ELR_HYP(regnum) __inst_arm_thumb32( \
|
||||
+ 0xE12EF300 | regnum, \
|
||||
+ 0xF3808E30 | (regnum << 16) \
|
||||
+)
|
||||
+
|
||||
+#endif /* ! __ASM_ARM_OPCODES_VIRT_H */
|
||||
diff --git a/arch/arm/include/asm/opcodes.h b/arch/arm/include/asm/opcodes.h
|
||||
new file mode 100644
|
||||
index 000000000000..a78bf5d2c518
|
||||
--- /dev/null
|
||||
+++ b/arch/arm/include/asm/opcodes.h
|
||||
@@ -0,0 +1,231 @@
|
||||
+/*
|
||||
+ * arch/arm/include/asm/opcodes.h
|
||||
+ *
|
||||
+ * This program is free software; you can redistribute it and/or modify
|
||||
+ * it under the terms of the GNU General Public License version 2 as
|
||||
+ * published by the Free Software Foundation.
|
||||
+ */
|
||||
+
|
||||
+#ifndef __ASM_ARM_OPCODES_H
|
||||
+#define __ASM_ARM_OPCODES_H
|
||||
+
|
||||
+#ifndef __ASSEMBLY__
|
||||
+#include <linux/linkage.h>
|
||||
+extern asmlinkage unsigned int arm_check_condition(u32 opcode, u32 psr);
|
||||
+#endif
|
||||
+
|
||||
+#define ARM_OPCODE_CONDTEST_FAIL 0
|
||||
+#define ARM_OPCODE_CONDTEST_PASS 1
|
||||
+#define ARM_OPCODE_CONDTEST_UNCOND 2
|
||||
+
|
||||
+
|
||||
+/*
|
||||
+ * Assembler opcode byteswap helpers.
|
||||
+ * These are only intended for use by this header: don't use them directly,
|
||||
+ * because they will be suboptimal in most cases.
|
||||
+ */
|
||||
+#define ___asm_opcode_swab32(x) ( \
|
||||
+ (((x) << 24) & 0xFF000000) \
|
||||
+ | (((x) << 8) & 0x00FF0000) \
|
||||
+ | (((x) >> 8) & 0x0000FF00) \
|
||||
+ | (((x) >> 24) & 0x000000FF) \
|
||||
+)
|
||||
+#define ___asm_opcode_swab16(x) ( \
|
||||
+ (((x) << 8) & 0xFF00) \
|
||||
+ | (((x) >> 8) & 0x00FF) \
|
||||
+)
|
||||
+#define ___asm_opcode_swahb32(x) ( \
|
||||
+ (((x) << 8) & 0xFF00FF00) \
|
||||
+ | (((x) >> 8) & 0x00FF00FF) \
|
||||
+)
|
||||
+#define ___asm_opcode_swahw32(x) ( \
|
||||
+ (((x) << 16) & 0xFFFF0000) \
|
||||
+ | (((x) >> 16) & 0x0000FFFF) \
|
||||
+)
|
||||
+#define ___asm_opcode_identity32(x) ((x) & 0xFFFFFFFF)
|
||||
+#define ___asm_opcode_identity16(x) ((x) & 0xFFFF)
|
||||
+
|
||||
+
|
||||
+/*
|
||||
+ * Opcode byteswap helpers
|
||||
+ *
|
||||
+ * These macros help with converting instructions between a canonical integer
|
||||
+ * format and in-memory representation, in an endianness-agnostic manner.
|
||||
+ *
|
||||
+ * __mem_to_opcode_*() convert from in-memory representation to canonical form.
|
||||
+ * __opcode_to_mem_*() convert from canonical form to in-memory representation.
|
||||
+ *
|
||||
+ *
|
||||
+ * Canonical instruction representation:
|
||||
+ *
|
||||
+ * ARM: 0xKKLLMMNN
|
||||
+ * Thumb 16-bit: 0x0000KKLL, where KK < 0xE8
|
||||
+ * Thumb 32-bit: 0xKKLLMMNN, where KK >= 0xE8
|
||||
+ *
|
||||
+ * There is no way to distinguish an ARM instruction in canonical representation
|
||||
+ * from a Thumb instruction (just as these cannot be distinguished in memory).
|
||||
+ * Where this distinction is important, it needs to be tracked separately.
|
||||
+ *
|
||||
+ * Note that values in the range 0x0000E800..0xE7FFFFFF intentionally do not
|
||||
+ * represent any valid Thumb-2 instruction. For this range,
|
||||
+ * __opcode_is_thumb32() and __opcode_is_thumb16() will both be false.
|
||||
+ *
|
||||
+ * The ___asm variants are intended only for use by this header, in situations
|
||||
+ * involving inline assembler. For .S files, the normal __opcode_*() macros
|
||||
+ * should do the right thing.
|
||||
+ */
|
||||
+#ifdef __ASSEMBLY__
|
||||
+
|
||||
+#define ___opcode_swab32(x) ___asm_opcode_swab32(x)
|
||||
+#define ___opcode_swab16(x) ___asm_opcode_swab16(x)
|
||||
+#define ___opcode_swahb32(x) ___asm_opcode_swahb32(x)
|
||||
+#define ___opcode_swahw32(x) ___asm_opcode_swahw32(x)
|
||||
+#define ___opcode_identity32(x) ___asm_opcode_identity32(x)
|
||||
+#define ___opcode_identity16(x) ___asm_opcode_identity16(x)
|
||||
+
|
||||
+#else /* ! __ASSEMBLY__ */
|
||||
+
|
||||
+#include <linux/types.h>
|
||||
+#include <linux/swab.h>
|
||||
+
|
||||
+#define ___opcode_swab32(x) swab32(x)
|
||||
+#define ___opcode_swab16(x) swab16(x)
|
||||
+#define ___opcode_swahb32(x) swahb32(x)
|
||||
+#define ___opcode_swahw32(x) swahw32(x)
|
||||
+#define ___opcode_identity32(x) ((u32)(x))
|
||||
+#define ___opcode_identity16(x) ((u16)(x))
|
||||
+
|
||||
+#endif /* ! __ASSEMBLY__ */
|
||||
+
|
||||
+
|
||||
+#ifdef CONFIG_CPU_ENDIAN_BE8
|
||||
+
|
||||
+#define __opcode_to_mem_arm(x) ___opcode_swab32(x)
|
||||
+#define __opcode_to_mem_thumb16(x) ___opcode_swab16(x)
|
||||
+#define __opcode_to_mem_thumb32(x) ___opcode_swahb32(x)
|
||||
+#define ___asm_opcode_to_mem_arm(x) ___asm_opcode_swab32(x)
|
||||
+#define ___asm_opcode_to_mem_thumb16(x) ___asm_opcode_swab16(x)
|
||||
+#define ___asm_opcode_to_mem_thumb32(x) ___asm_opcode_swahb32(x)
|
||||
+
|
||||
+#else /* ! CONFIG_CPU_ENDIAN_BE8 */
|
||||
+
|
||||
+#define __opcode_to_mem_arm(x) ___opcode_identity32(x)
|
||||
+#define __opcode_to_mem_thumb16(x) ___opcode_identity16(x)
|
||||
+#define ___asm_opcode_to_mem_arm(x) ___asm_opcode_identity32(x)
|
||||
+#define ___asm_opcode_to_mem_thumb16(x) ___asm_opcode_identity16(x)
|
||||
+#ifndef CONFIG_CPU_ENDIAN_BE32
|
||||
+/*
|
||||
+ * On BE32 systems, using 32-bit accesses to store Thumb instructions will not
|
||||
+ * work in all cases, due to alignment constraints. For now, a correct
|
||||
+ * version is not provided for BE32.
|
||||
+ */
|
||||
+#define __opcode_to_mem_thumb32(x) ___opcode_swahw32(x)
|
||||
+#define ___asm_opcode_to_mem_thumb32(x) ___asm_opcode_swahw32(x)
|
||||
+#endif
|
||||
+
|
||||
+#endif /* ! CONFIG_CPU_ENDIAN_BE8 */
|
||||
+
|
||||
+#define __mem_to_opcode_arm(x) __opcode_to_mem_arm(x)
|
||||
+#define __mem_to_opcode_thumb16(x) __opcode_to_mem_thumb16(x)
|
||||
+#ifndef CONFIG_CPU_ENDIAN_BE32
|
||||
+#define __mem_to_opcode_thumb32(x) __opcode_to_mem_thumb32(x)
|
||||
+#endif
|
||||
+
|
||||
+/* Operations specific to Thumb opcodes */
|
||||
+
|
||||
+/* Instruction size checks: */
|
||||
+#define __opcode_is_thumb32(x) ( \
|
||||
+ ((x) & 0xF8000000) == 0xE8000000 \
|
||||
+ || ((x) & 0xF0000000) == 0xF0000000 \
|
||||
+)
|
||||
+#define __opcode_is_thumb16(x) ( \
|
||||
+ ((x) & 0xFFFF0000) == 0 \
|
||||
+ && !(((x) & 0xF800) == 0xE800 || ((x) & 0xF000) == 0xF000) \
|
||||
+)
|
||||
+
|
||||
+/* Operations to construct or split 32-bit Thumb instructions: */
|
||||
+#define __opcode_thumb32_first(x) (___opcode_identity16((x) >> 16))
|
||||
+#define __opcode_thumb32_second(x) (___opcode_identity16(x))
|
||||
+#define __opcode_thumb32_compose(first, second) ( \
|
||||
+ (___opcode_identity32(___opcode_identity16(first)) << 16) \
|
||||
+ | ___opcode_identity32(___opcode_identity16(second)) \
|
||||
+)
|
||||
+#define ___asm_opcode_thumb32_first(x) (___asm_opcode_identity16((x) >> 16))
|
||||
+#define ___asm_opcode_thumb32_second(x) (___asm_opcode_identity16(x))
|
||||
+#define ___asm_opcode_thumb32_compose(first, second) ( \
|
||||
+ (___asm_opcode_identity32(___asm_opcode_identity16(first)) << 16) \
|
||||
+ | ___asm_opcode_identity32(___asm_opcode_identity16(second)) \
|
||||
+)
|
||||
+
|
||||
+/*
|
||||
+ * Opcode injection helpers
|
||||
+ *
|
||||
+ * In rare cases it is necessary to assemble an opcode which the
|
||||
+ * assembler does not support directly, or which would normally be
|
||||
+ * rejected because of the CFLAGS or AFLAGS used to build the affected
|
||||
+ * file.
|
||||
+ *
|
||||
+ * Before using these macros, consider carefully whether it is feasible
|
||||
+ * instead to change the build flags for your file, or whether it really
|
||||
+ * makes sense to support old assembler versions when building that
|
||||
+ * particular kernel feature.
|
||||
+ *
|
||||
+ * The macros defined here should only be used where there is no viable
|
||||
+ * alternative.
|
||||
+ *
|
||||
+ *
|
||||
+ * __inst_arm(x): emit the specified ARM opcode
|
||||
+ * __inst_thumb16(x): emit the specified 16-bit Thumb opcode
|
||||
+ * __inst_thumb32(x): emit the specified 32-bit Thumb opcode
|
||||
+ *
|
||||
+ * __inst_arm_thumb16(arm, thumb): emit either the specified arm or
|
||||
+ * 16-bit Thumb opcode, depending on whether an ARM or Thumb-2
|
||||
+ * kernel is being built
|
||||
+ *
|
||||
+ * __inst_arm_thumb32(arm, thumb): emit either the specified arm or
|
||||
+ * 32-bit Thumb opcode, depending on whether an ARM or Thumb-2
|
||||
+ * kernel is being built
|
||||
+ *
|
||||
+ *
|
||||
+ * Note that using these macros directly is poor practice. Instead, you
|
||||
+ * should use them to define human-readable wrapper macros to encode the
|
||||
+ * instructions that you care about. In code which might run on ARMv7 or
|
||||
+ * above, you can usually use the __inst_arm_thumb{16,32} macros to
|
||||
+ * specify the ARM and Thumb alternatives at the same time. This ensures
|
||||
+ * that the correct opcode gets emitted depending on the instruction set
|
||||
+ * used for the kernel build.
|
||||
+ *
|
||||
+ * Look at opcodes-virt.h for an example of how to use these macros.
|
||||
+ */
|
||||
+#include <linux/stringify.h>
|
||||
+
|
||||
+#define __inst_arm(x) ___inst_arm(___asm_opcode_to_mem_arm(x))
|
||||
+#define __inst_thumb32(x) ___inst_thumb32( \
|
||||
+ ___asm_opcode_to_mem_thumb16(___asm_opcode_thumb32_first(x)), \
|
||||
+ ___asm_opcode_to_mem_thumb16(___asm_opcode_thumb32_second(x)) \
|
||||
+)
|
||||
+#define __inst_thumb16(x) ___inst_thumb16(___asm_opcode_to_mem_thumb16(x))
|
||||
+
|
||||
+#ifdef CONFIG_THUMB2_BAREBOX
|
||||
+#define __inst_arm_thumb16(arm_opcode, thumb_opcode) \
|
||||
+ __inst_thumb16(thumb_opcode)
|
||||
+#define __inst_arm_thumb32(arm_opcode, thumb_opcode) \
|
||||
+ __inst_thumb32(thumb_opcode)
|
||||
+#else
|
||||
+#define __inst_arm_thumb16(arm_opcode, thumb_opcode) __inst_arm(arm_opcode)
|
||||
+#define __inst_arm_thumb32(arm_opcode, thumb_opcode) __inst_arm(arm_opcode)
|
||||
+#endif
|
||||
+
|
||||
+/* Helpers for the helpers. Don't use these directly. */
|
||||
+#ifdef __ASSEMBLY__
|
||||
+#define ___inst_arm(x) .long x
|
||||
+#define ___inst_thumb16(x) .short x
|
||||
+#define ___inst_thumb32(first, second) .short first, second
|
||||
+#else
|
||||
+#define ___inst_arm(x) ".long " __stringify(x) "\n\t"
|
||||
+#define ___inst_thumb16(x) ".short " __stringify(x) "\n\t"
|
||||
+#define ___inst_thumb32(first, second) \
|
||||
+ ".short " __stringify(first) ", " __stringify(second) "\n\t"
|
||||
+#endif
|
||||
+
|
||||
+#endif /* __ASM_ARM_OPCODES_H */
|
||||
--
|
||||
2.16.1
|
@ -1,85 +0,0 @@
|
||||
This is a port of the Linux safe_svcmode_maskall macro to
|
||||
the Barebox lowlevel init.
|
||||
|
||||
Signed-off-by: Lucas Stach <l.stach at pengutronix.de>
|
||||
---
|
||||
arch/arm/cpu/lowlevel.S | 20 ++++++++++++++++----
|
||||
arch/arm/include/asm/system.h | 26 ++++++++++++++++++++++++++
|
||||
2 files changed, 42 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/arch/arm/cpu/lowlevel.S b/arch/arm/cpu/lowlevel.S
|
||||
index 7696a198e764..194ce0e7c274 100644
|
||||
--- a/arch/arm/cpu/lowlevel.S
|
||||
+++ b/arch/arm/cpu/lowlevel.S
|
||||
@@ -1,16 +1,28 @@
|
||||
#include <linux/linkage.h>
|
||||
#include <init.h>
|
||||
#include <asm/system.h>
|
||||
+#include <asm/opcodes-virt.h>
|
||||
|
||||
.section ".text_bare_init_","ax"
|
||||
ENTRY(arm_cpu_lowlevel_init)
|
||||
/* save lr, since it may be banked away with a processor mode change */
|
||||
mov r2, lr
|
||||
+
|
||||
/* set the cpu to SVC32 mode, mask irq and fiq */
|
||||
- mrs r12, cpsr
|
||||
- bic r12, r12, #0x1f
|
||||
- orr r12, r12, #0xd3
|
||||
- msr cpsr, r12
|
||||
+ mrs r12 , cpsr
|
||||
+ eor r12, r12, #HYP_MODE
|
||||
+ tst r12, #MODE_MASK
|
||||
+ bic r12 , r12 , #MODE_MASK
|
||||
+ orr r12 , r12 , #(PSR_I_BIT | PSR_F_BIT | SVC_MODE)
|
||||
+THUMB( orr r12 , r12 , #PSR_T_BIT )
|
||||
+ bne 1f
|
||||
+ orr r12, r12, #PSR_A_BIT
|
||||
+ adr lr, 2f
|
||||
+ msr spsr_cxsf, r12
|
||||
+ __MSR_ELR_HYP(14)
|
||||
+ __ERET
|
||||
+1: msr cpsr_c, r12
|
||||
+2:
|
||||
|
||||
#if __LINUX_ARM_ARCH__ >= 6
|
||||
/*
|
||||
diff --git a/arch/arm/include/asm/system.h b/arch/arm/include/asm/system.h
|
||||
index 57c76186b499..55e0f4090295 100644
|
||||
--- a/arch/arm/include/asm/system.h
|
||||
+++ b/arch/arm/include/asm/system.h
|
||||
@@ -60,6 +60,32 @@
|
||||
#define CR_AFE (1 << 29) /* Access flag enable */
|
||||
#define CR_TE (1 << 30) /* Thumb exception enable */
|
||||
|
||||
+/*
|
||||
+ * PSR bits
|
||||
+ */
|
||||
+#define USR_MODE 0x00000010
|
||||
+#define FIQ_MODE 0x00000011
|
||||
+#define IRQ_MODE 0x00000012
|
||||
+#define SVC_MODE 0x00000013
|
||||
+#define ABT_MODE 0x00000017
|
||||
+#define HYP_MODE 0x0000001a
|
||||
+#define UND_MODE 0x0000001b
|
||||
+#define SYSTEM_MODE 0x0000001f
|
||||
+#define MODE32_BIT 0x00000010
|
||||
+#define MODE_MASK 0x0000001f
|
||||
+
|
||||
+#define PSR_T_BIT 0x00000020
|
||||
+#define PSR_F_BIT 0x00000040
|
||||
+#define PSR_I_BIT 0x00000080
|
||||
+#define PSR_A_BIT 0x00000100
|
||||
+#define PSR_E_BIT 0x00000200
|
||||
+#define PSR_J_BIT 0x01000000
|
||||
+#define PSR_Q_BIT 0x08000000
|
||||
+#define PSR_V_BIT 0x10000000
|
||||
+#define PSR_C_BIT 0x20000000
|
||||
+#define PSR_Z_BIT 0x40000000
|
||||
+#define PSR_N_BIT 0x80000000
|
||||
+
|
||||
#ifndef __ASSEMBLY__
|
||||
#if __LINUX_ARM_ARCH__ >= 7
|
||||
static inline unsigned int current_el(void)
|
||||
--
|
||||
2.15.1
|
@ -1,33 +0,0 @@
|
||||
The hyp mode handling added in the secure monitor code is also useful
|
||||
when Barebox doesn't have PSCI control. Allow to build without PSCI.
|
||||
|
||||
Signed-off-by: Lucas Stach <l.stach at pengutronix.de>
|
||||
---
|
||||
arch/arm/cpu/sm_as.S | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/arch/arm/cpu/sm_as.S b/arch/arm/cpu/sm_as.S
|
||||
index 09580e75de5f..0d01e1bf2435 100644
|
||||
--- a/arch/arm/cpu/sm_as.S
|
||||
+++ b/arch/arm/cpu/sm_as.S
|
||||
@@ -129,7 +129,9 @@ secure_monitor:
|
||||
sub sp, sp, #4*4 @ allocate result structure on stack
|
||||
mov r12, sp
|
||||
push {r4-r6, r12}
|
||||
+#ifdef CONFIG_ARM_PSCI
|
||||
bl psci_entry
|
||||
+#endif
|
||||
pop {r4-r6, r12}
|
||||
ldm r12, {r0-r3}
|
||||
add sp, sp, #4*4
|
||||
@@ -163,6 +165,8 @@ ENTRY(psci_cpu_entry)
|
||||
mcr p15, 0, r0, c1, c0, 1 @ ACTLR
|
||||
|
||||
bl secure_monitor_stack_setup
|
||||
+#ifdef CONFIG_ARM_PSCI
|
||||
bl psci_cpu_entry_c
|
||||
+#endif
|
||||
|
||||
ENDPROC(psci_cpu_entry)
|
||||
--
|
||||
2.15.1
|
@ -1,192 +0,0 @@
|
||||
From 6add848d66a7bdebed73416a3cf27b8bf10a2cd8 Mon Sep 17 00:00:00 2001
|
||||
From: Pascal Vizeli <pvizeli@syshack.ch>
|
||||
Date: Sat, 19 May 2018 17:58:01 +0200
|
||||
Subject: [PATCH 1/1] p2
|
||||
|
||||
---
|
||||
arch/arm/cpu/Makefile | 7 +++
|
||||
arch/arm/cpu/hyp.S | 115 ++++++++++++++++++++++++++++++++++++++++++
|
||||
arch/arm/cpu/sm_as.S | 11 ----
|
||||
arch/arm/include/asm/secure.h | 2 +
|
||||
4 files changed, 124 insertions(+), 11 deletions(-)
|
||||
create mode 100644 arch/arm/cpu/hyp.S
|
||||
|
||||
diff --git a/arch/arm/cpu/Makefile b/arch/arm/cpu/Makefile
|
||||
index 0316d25..6d67b42 100644
|
||||
--- a/arch/arm/cpu/Makefile
|
||||
+++ b/arch/arm/cpu/Makefile
|
||||
@@ -9,6 +9,13 @@ obj-y += start.o entry.o
|
||||
|
||||
obj-pbl-y += setupc$(S64).o cache$(S64).o
|
||||
|
||||
+ifeq ($(CONFIG_CPU_64v8),)
|
||||
+obj-y += hyp.o
|
||||
+AFLAGS_hyp.o :=-Wa,-march=armv7-a
|
||||
+pbl-y += hyp.o
|
||||
+AFLAGS_pbl-hyp.o :=-Wa,-march=armv7-a
|
||||
+endif
|
||||
+
|
||||
#
|
||||
# Any variants can be called as start-armxyz.S
|
||||
#
|
||||
diff --git a/arch/arm/cpu/hyp.S b/arch/arm/cpu/hyp.S
|
||||
new file mode 100644
|
||||
index 0000000..435d416
|
||||
--- /dev/null
|
||||
+++ b/arch/arm/cpu/hyp.S
|
||||
@@ -0,0 +1,115 @@
|
||||
+#include <linux/linkage.h>
|
||||
+#include <asm/system.h>
|
||||
+#include <asm/opcodes-virt.h>
|
||||
+
|
||||
+.arch_extension sec
|
||||
+.arch_extension virt
|
||||
+
|
||||
+.section ".text_bare_init_","ax"
|
||||
+
|
||||
+.data
|
||||
+ .align 2
|
||||
+ENTRY(__boot_cpu_mode)
|
||||
+ .long 0
|
||||
+.text
|
||||
+
|
||||
+ENTRY(__hyp_install)
|
||||
+ mrs r12, cpsr
|
||||
+ and r12, r12, #MODE_MASK
|
||||
+
|
||||
+ @ Save the initial CPU state
|
||||
+ adr r0, .L__boot_cpu_mode_offset
|
||||
+ ldr r1, [r0]
|
||||
+ str r12, [r0, r1]
|
||||
+
|
||||
+ cmp r12, #HYP_MODE
|
||||
+ movne pc, lr @ give up if the CPU is not in HYP mode
|
||||
+
|
||||
+ @ Now install the hypervisor stub:
|
||||
+ adr r12, __hyp_vectors
|
||||
+ mcr p15, 4, r12, c12, c0, 0 @ set hypervisor vector base (HVBAR)
|
||||
+
|
||||
+ @ Disable all traps, so we don't get any nasty surprise
|
||||
+ mov r12, #0
|
||||
+ mcr p15, 4, r12, c1, c1, 0 @ HCR
|
||||
+ mcr p15, 4, r12, c1, c1, 2 @ HCPTR
|
||||
+ mcr p15, 4, r12, c1, c1, 3 @ HSTR
|
||||
+
|
||||
+THUMB( orr r12, #(1 << 30) ) @ HSCTLR.TE
|
||||
+ mcr p15, 4, r12, c1, c0, 0 @ HSCTLR
|
||||
+
|
||||
+ mrc p15, 4, r12, c1, c1, 1 @ HDCR
|
||||
+ and r12, #0x1f @ Preserve HPMN
|
||||
+ mcr p15, 4, r12, c1, c1, 1 @ HDCR
|
||||
+
|
||||
+ @ Make sure NS-SVC is initialised appropriately
|
||||
+ mrc p15, 0, r12, c1, c0, 0 @ SCTLR
|
||||
+ orr r12, #(1 << 5) @ CP15 barriers enabled
|
||||
+ bic r12, #(3 << 7) @ Clear SED/ITD for v8 (RES0 for v7)
|
||||
+ bic r12, #(3 << 19) @ WXN and UWXN disabled
|
||||
+ mcr p15, 0, r12, c1, c0, 0 @ SCTLR
|
||||
+
|
||||
+ mrc p15, 0, r12, c0, c0, 0 @ MIDR
|
||||
+ mcr p15, 4, r12, c0, c0, 0 @ VPIDR
|
||||
+
|
||||
+ mrc p15, 0, r12, c0, c0, 5 @ MPIDR
|
||||
+ mcr p15, 4, r12, c0, c0, 5 @ VMPIDR
|
||||
+ bx lr
|
||||
+ENDPROC(__hyp_install)
|
||||
+
|
||||
+ENTRY(armv7_hyp_install)
|
||||
+ mov r2, lr
|
||||
+
|
||||
+ bl __hyp_install
|
||||
+
|
||||
+ /* set the cpu to SVC32 mode, mask irq and fiq */
|
||||
+ mrs r12 , cpsr
|
||||
+ eor r12, r12, #HYP_MODE
|
||||
+ tst r12, #MODE_MASK
|
||||
+ bic r12 , r12 , #MODE_MASK
|
||||
+ orr r12 , r12 , #(PSR_I_BIT | PSR_F_BIT | SVC_MODE)
|
||||
+THUMB( orr r12 , r12 , #PSR_T_BIT )
|
||||
+ bne 1f
|
||||
+ orr r12, r12, #PSR_A_BIT
|
||||
+ adr lr, 2f
|
||||
+ msr spsr_cxsf, r12
|
||||
+ __MSR_ELR_HYP(14)
|
||||
+ __ERET
|
||||
+1: msr cpsr_c, r12
|
||||
+2:
|
||||
+ mov pc, r2
|
||||
+ENDPROC(armv7_hyp_install)
|
||||
+
|
||||
+ENTRY(armv7_switch_to_hyp)
|
||||
+ mov r0, lr
|
||||
+ mov r1, sp @ save SVC copy of LR and SP
|
||||
+ isb
|
||||
+ hvc #0 @ for older asm: .byte 0x70, 0x00, 0x40, 0xe1
|
||||
+ mov sp, r1
|
||||
+ mov lr, r0 @ restore SVC copy of LR and SP
|
||||
+
|
||||
+ bx lr
|
||||
+ENDPROC(armv7_switch_to_hyp)
|
||||
+
|
||||
+.align 2
|
||||
+.L__boot_cpu_mode_offset:
|
||||
+ .long __boot_cpu_mode - .
|
||||
+
|
||||
+/* The HYP trap is crafted to match armv7_switch_to_hyp() */
|
||||
+__hyp_do_trap:
|
||||
+ mov lr, r0
|
||||
+ mov sp, r1
|
||||
+ bx lr
|
||||
+ENDPROC(__hyp_do_trap)
|
||||
+
|
||||
+.align 5
|
||||
+__hyp_vectors:
|
||||
+__hyp_reset: W(b) .
|
||||
+__hyp_und: W(b) .
|
||||
+__hyp_svc: W(b) .
|
||||
+__hyp_pabort: W(b) .
|
||||
+__hyp_dabort: W(b) .
|
||||
+__hyp_trap: W(b) __hyp_do_trap
|
||||
+__hyp_irq: W(b) .
|
||||
+__hyp_fiq: W(b) .
|
||||
+ENDPROC(__hyp_vectors)
|
||||
diff --git a/arch/arm/cpu/sm_as.S b/arch/arm/cpu/sm_as.S
|
||||
index 0d01e1b..de6cd04 100644
|
||||
--- a/arch/arm/cpu/sm_as.S
|
||||
+++ b/arch/arm/cpu/sm_as.S
|
||||
@@ -148,17 +148,6 @@ hyp_trap:
|
||||
mov pc, lr @ do no switch modes, but
|
||||
@ return to caller
|
||||
|
||||
-ENTRY(armv7_switch_to_hyp)
|
||||
- mov r0, lr
|
||||
- mov r1, sp @ save SVC copy of LR and SP
|
||||
- isb
|
||||
- hvc #0 @ for older asm: .byte 0x70, 0x00, 0x40, 0xe1
|
||||
- mov sp, r1
|
||||
- mov lr, r0 @ restore SVC copy of LR and SP
|
||||
-
|
||||
- bx lr
|
||||
-ENDPROC(armv7_switch_to_hyp)
|
||||
-
|
||||
ENTRY(psci_cpu_entry)
|
||||
mrc p15, 0, r0, c1, c0, 1 @ ACTLR
|
||||
orr r0, r0, #(1 << 6) @ Set SMP bit
|
||||
diff --git a/arch/arm/include/asm/secure.h b/arch/arm/include/asm/secure.h
|
||||
index a4cb1f6..54cc052 100644
|
||||
--- a/arch/arm/include/asm/secure.h
|
||||
+++ b/arch/arm/include/asm/secure.h
|
||||
@@ -6,8 +6,10 @@
|
||||
int armv7_secure_monitor_install(void);
|
||||
int __armv7_secure_monitor_install(void);
|
||||
void armv7_switch_to_hyp(void);
|
||||
+void armv7_hyp_install(void);
|
||||
|
||||
extern unsigned char secure_monitor_init_vectors[];
|
||||
+extern int __boot_cpu_mode;
|
||||
|
||||
enum arm_security_state {
|
||||
ARM_STATE_SECURE,
|
||||
--
|
||||
2.7.4
|
||||
|
@ -1,25 +0,0 @@
|
||||
When Barebox has been entered in HYP mode, the CPU is already switched
|
||||
to the non-secure world and it's not possible for Barebox to install
|
||||
it's own secure monitor.
|
||||
|
||||
Signed-off-by: Lucas Stach <l.stach at pengutronix.de>
|
||||
---
|
||||
arch/arm/cpu/sm.c | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
diff --git a/arch/arm/cpu/sm.c b/arch/arm/cpu/sm.c
|
||||
index 5808dfd92bdc..71bb394c8540 100644
|
||||
--- a/arch/arm/cpu/sm.c
|
||||
+++ b/arch/arm/cpu/sm.c
|
||||
@@ -184,6 +184,9 @@ int armv7_secure_monitor_install(void)
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
+ if (__boot_cpu_mode == HYP_MODE)
|
||||
+ return 0;
|
||||
+
|
||||
mmuon = get_cr() & CR_M;
|
||||
|
||||
vbar = get_vbar();
|
||||
--
|
||||
2.15.1
|
@ -1,26 +0,0 @@
|
||||
When Barebox has been entered in HYP mode, there is a high chance that
|
||||
the kernel is intended to be started in HYP mode also. Get this
|
||||
default into place.
|
||||
|
||||
Signed-off-by: Lucas Stach <l.stach at pengutronix.de>
|
||||
---
|
||||
arch/arm/cpu/sm.c | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
diff --git a/arch/arm/cpu/sm.c b/arch/arm/cpu/sm.c
|
||||
index 71bb394c8540..3369fbb5ff1a 100644
|
||||
--- a/arch/arm/cpu/sm.c
|
||||
+++ b/arch/arm/cpu/sm.c
|
||||
@@ -264,6 +264,9 @@ static int sm_init(void)
|
||||
bootm_secure_state_names,
|
||||
ARRAY_SIZE(bootm_secure_state_names));
|
||||
|
||||
+ if (__boot_cpu_mode == HYP_MODE)
|
||||
+ bootm_secure_state = ARM_STATE_HYP;
|
||||
+
|
||||
return 0;
|
||||
}
|
||||
device_initcall(sm_init);
|
||||
\ No newline at end of file
|
||||
--
|
||||
2.15.1
|
@ -1,84 +0,0 @@
|
||||
From f984f8cf4c07f24af7855a4fd69afa3e656238c2 Mon Sep 17 00:00:00 2001
|
||||
From: Pascal Vizeli <pvizeli@syshack.ch>
|
||||
Date: Sat, 19 May 2018 17:24:42 +0200
|
||||
Subject: [PATCH 1/1] p4
|
||||
|
||||
---
|
||||
arch/arm/cpu/lowlevel.S | 3 +++
|
||||
arch/arm/cpu/start-pbl.c | 3 +++
|
||||
arch/arm/cpu/start.c | 3 +++
|
||||
arch/arm/cpu/uncompress.c | 4 ++++
|
||||
4 files changed, 13 insertions(+)
|
||||
|
||||
diff --git a/arch/arm/cpu/lowlevel.S b/arch/arm/cpu/lowlevel.S
|
||||
index 194ce0e..28ad850 100644
|
||||
--- a/arch/arm/cpu/lowlevel.S
|
||||
+++ b/arch/arm/cpu/lowlevel.S
|
||||
@@ -8,6 +8,9 @@ ENTRY(arm_cpu_lowlevel_init)
|
||||
/* save lr, since it may be banked away with a processor mode change */
|
||||
mov r2, lr
|
||||
|
||||
+ /* careful: the hyp install corrupts r0 and r1 */
|
||||
+ bl __hyp_install
|
||||
+
|
||||
/* set the cpu to SVC32 mode, mask irq and fiq */
|
||||
mrs r12 , cpsr
|
||||
eor r12, r12, #HYP_MODE
|
||||
diff --git a/arch/arm/cpu/start-pbl.c b/arch/arm/cpu/start-pbl.c
|
||||
index 16159d7..3f9959e 100644
|
||||
--- a/arch/arm/cpu/start-pbl.c
|
||||
+++ b/arch/arm/cpu/start-pbl.c
|
||||
@@ -98,5 +98,8 @@ __noreturn void barebox_single_pbl_start(unsigned long membase,
|
||||
else
|
||||
barebox = (void *)barebox_base;
|
||||
|
||||
+ if (__boot_cpu_mode == HYP_MODE)
|
||||
+ armv7_switch_to_hyp();
|
||||
+
|
||||
barebox(membase, memsize, boarddata);
|
||||
}
|
||||
diff --git a/arch/arm/cpu/start.c b/arch/arm/cpu/start.c
|
||||
index 68fff89..1ee13c0 100644
|
||||
--- a/arch/arm/cpu/start.c
|
||||
+++ b/arch/arm/cpu/start.c
|
||||
@@ -24,6 +24,7 @@
|
||||
#include <asm/barebox-arm-head.h>
|
||||
#include <asm-generic/memory_layout.h>
|
||||
#include <asm/sections.h>
|
||||
+#include <asm/secure.h>
|
||||
#include <asm/unaligned.h>
|
||||
#include <asm/cache.h>
|
||||
#include <asm/mmu.h>
|
||||
@@ -145,6 +146,8 @@ __noreturn void barebox_non_pbl_start(unsigned long membase,
|
||||
unsigned long malloc_start, malloc_end;
|
||||
unsigned long barebox_size = barebox_image_size + MAX_BSS_SIZE;
|
||||
|
||||
+ armv7_hyp_install();
|
||||
+
|
||||
if (IS_ENABLED(CONFIG_RELOCATABLE)) {
|
||||
unsigned long barebox_base = arm_mem_barebox_image(membase,
|
||||
endmem,
|
||||
diff --git a/arch/arm/cpu/uncompress.c b/arch/arm/cpu/uncompress.c
|
||||
index b07087e..57f324b 100644
|
||||
--- a/arch/arm/cpu/uncompress.c
|
||||
+++ b/arch/arm/cpu/uncompress.c
|
||||
@@ -27,6 +27,7 @@
|
||||
#include <asm/barebox-arm-head.h>
|
||||
#include <asm-generic/memory_layout.h>
|
||||
#include <asm/sections.h>
|
||||
+#include <asm/secure.h>
|
||||
#include <asm/cache.h>
|
||||
#include <asm/mmu.h>
|
||||
#include <asm/unaligned.h>
|
||||
@@ -108,5 +109,8 @@ void __noreturn barebox_multi_pbl_start(unsigned long membase,
|
||||
|
||||
pr_debug("jumping to uncompressed image at 0x%p\n", barebox);
|
||||
|
||||
+ if (__boot_cpu_mode == HYP_MODE)
|
||||
+ armv7_switch_to_hyp();
|
||||
+
|
||||
barebox(membase, memsize, boarddata);
|
||||
}
|
||||
--
|
||||
2.7.4
|
||||
|
@ -1,38 +0,0 @@
|
||||
From: Enrico Joerns <ejo at pengutronix.de>
|
||||
|
||||
Signed-off-by: Enrico Joerns <ejo at pengutronix.de>
|
||||
---
|
||||
arch/arm/boards/raspberry-pi/rpi-common.c | 2 ++
|
||||
arch/arm/mach-bcm283x/include/mach/mbox.h | 4 ++++
|
||||
2 files changed, 6 insertions(+)
|
||||
|
||||
diff --git a/arch/arm/boards/raspberry-pi/rpi-common.c b/arch/arm/boards/raspberry-pi/rpi-common.c
|
||||
index 6e375bc984de..aec8cb27ed40 100644
|
||||
--- a/arch/arm/boards/raspberry-pi/rpi-common.c
|
||||
+++ b/arch/arm/boards/raspberry-pi/rpi-common.c
|
||||
@@ -174,6 +174,8 @@ const struct rpi_model rpi_models_old_scheme[] = {
|
||||
const struct rpi_model rpi_models_new_scheme[] = {
|
||||
RPI_MODEL(0, "Unknown model", NULL),
|
||||
RPI_MODEL(BCM2836_BOARD_REV_2_B, "2 Model B", rpi_b_plus_init),
|
||||
+ RPI_MODEL(BCM2837_BOARD_REV_3_B, "3 Model B", rpi_b_plus_init),
|
||||
+ RPI_MODEL(BCM2837_BOARD_REV_ZERO, "Zero", rpi_b_plus_init),
|
||||
};
|
||||
|
||||
static int rpi_board_rev = 0;
|
||||
diff --git a/arch/arm/mach-bcm283x/include/mach/mbox.h b/arch/arm/mach-bcm283x/include/mach/mbox.h
|
||||
index 2b5aea88ee0a..4cddf99a8429 100644
|
||||
--- a/arch/arm/mach-bcm283x/include/mach/mbox.h
|
||||
+++ b/arch/arm/mach-bcm283x/include/mach/mbox.h
|
||||
@@ -129,6 +129,10 @@ struct bcm2835_mbox_tag_hdr {
|
||||
|
||||
/* RPi 2 */
|
||||
#define BCM2836_BOARD_REV_2_B 0x4
|
||||
+/* RPi 3 */
|
||||
+#define BCM2837_BOARD_REV_3_B 0x8
|
||||
+/* Zero */
|
||||
+#define BCM2837_BOARD_REV_ZERO 0x9
|
||||
|
||||
/*
|
||||
* 0x2..0xf from:
|
||||
--
|
||||
2.15.1
|
@ -1,136 +0,0 @@
|
||||
This adds basic support at the same feature level as the other
|
||||
supported raspberry pi boards.
|
||||
|
||||
Signed-off-by: Lucas Stach <l.stach at pengutronix.de>
|
||||
---
|
||||
arch/arm/boards/raspberry-pi/lowlevel.c | 14 ++++++++++++--
|
||||
arch/arm/configs/rpi_defconfig | 2 ++
|
||||
arch/arm/dts/Makefile | 1 +
|
||||
arch/arm/dts/bcm2837-rpi-3.dts | 15 +++++++++++++++
|
||||
arch/arm/mach-bcm283x/Kconfig | 6 ++++++
|
||||
arch/arm/mach-bcm283x/core.c | 1 +
|
||||
images/Makefile.bcm283x | 4 ++++
|
||||
7 files changed, 41 insertions(+), 2 deletions(-)
|
||||
create mode 100644 arch/arm/dts/bcm2837-rpi-3.dts
|
||||
|
||||
diff --git a/arch/arm/boards/raspberry-pi/lowlevel.c b/arch/arm/boards/raspberry-pi/lowlevel.c
|
||||
index 4e71e29e0c0b..5ca0d3877069 100644
|
||||
--- a/arch/arm/boards/raspberry-pi/lowlevel.c
|
||||
+++ b/arch/arm/boards/raspberry-pi/lowlevel.c
|
||||
@@ -1,7 +1,7 @@
|
||||
+#include <asm/barebox-arm.h>
|
||||
+#include <asm/cache.h>
|
||||
#include <common.h>
|
||||
#include <linux/sizes.h>
|
||||
-#include <asm/barebox-arm.h>
|
||||
-#include <asm/barebox-arm-head.h>
|
||||
#include <mach/platform.h>
|
||||
|
||||
extern char __dtb_bcm2835_rpi_start[];
|
||||
@@ -23,3 +23,13 @@ ENTRY_FUNCTION(start_raspberry_pi2, r0, r1, r2)
|
||||
|
||||
barebox_arm_entry(BCM2835_SDRAM_BASE, SZ_512M, fdt);
|
||||
}
|
||||
+
|
||||
+extern char __dtb_bcm2837_rpi_3_start[];
|
||||
+ENTRY_FUNCTION(start_raspberry_pi3, r0, r1, r2)
|
||||
+{
|
||||
+ void *fdt = __dtb_bcm2837_rpi_3_start - get_runtime_offset();
|
||||
+
|
||||
+ arm_cpu_lowlevel_init();
|
||||
+
|
||||
+ barebox_arm_entry(BCM2835_SDRAM_BASE, SZ_512M, fdt);
|
||||
+}
|
||||
diff --git a/arch/arm/configs/rpi_defconfig b/arch/arm/configs/rpi_defconfig
|
||||
index 6dc90c59b36d..34070a05abe7 100644
|
||||
--- a/arch/arm/configs/rpi_defconfig
|
||||
+++ b/arch/arm/configs/rpi_defconfig
|
||||
@@ -1,9 +1,11 @@
|
||||
CONFIG_ARCH_BCM283X=y
|
||||
CONFIG_MACH_RPI=y
|
||||
CONFIG_MACH_RPI2=y
|
||||
+CONFIG_MACH_RPI3=y
|
||||
CONFIG_AEABI=y
|
||||
CONFIG_ARM_OPTIMZED_STRING_FUNCTIONS=y
|
||||
CONFIG_ARM_UNWIND=y
|
||||
+CONFIG_IMAGE_COMPRESSION_NONE=y
|
||||
CONFIG_MMU=y
|
||||
CONFIG_MALLOC_TLSF=y
|
||||
CONFIG_KALLSYMS=y
|
||||
diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile
|
||||
index 0526a6f40724..0eab313c5011 100644
|
||||
--- a/arch/arm/dts/Makefile
|
||||
+++ b/arch/arm/dts/Makefile
|
||||
@@ -66,6 +66,7 @@ pbl-dtb-$(CONFIG_MACH_PHYTEC_SOM_RK3288) += rk3288-phycore-som.dtb.o
|
||||
pbl-dtb-$(CONFIG_MACH_REALQ7) += imx6q-dmo-edmqmx6.dtb.o
|
||||
pbl-dtb-$(CONFIG_MACH_RPI) += bcm2835-rpi.dtb.o
|
||||
pbl-dtb-$(CONFIG_MACH_RPI2) += bcm2836-rpi-2.dtb.o
|
||||
+pbl-dtb-$(CONFIG_MACH_RPI3) += bcm2837-rpi-3.dtb.o
|
||||
pbl-dtb-$(CONFIG_MACH_SABRELITE) += imx6q-sabrelite.dtb.o imx6dl-sabrelite.dtb.o
|
||||
pbl-dtb-$(CONFIG_MACH_SABRESD) += imx6q-sabresd.dtb.o
|
||||
pbl-dtb-$(CONFIG_MACH_FREESCALE_IMX6SX_SABRESDB) += imx6sx-sdb.dtb.o
|
||||
diff --git a/arch/arm/dts/bcm2837-rpi-3.dts b/arch/arm/dts/bcm2837-rpi-3.dts
|
||||
new file mode 100644
|
||||
index 000000000000..f8c58c570137
|
||||
--- /dev/null
|
||||
+++ b/arch/arm/dts/bcm2837-rpi-3.dts
|
||||
@@ -0,0 +1,15 @@
|
||||
+#include <arm64/broadcom/bcm2837-rpi-3-b.dts>
|
||||
+
|
||||
+/ {
|
||||
+ chosen {
|
||||
+ stdout-path = &uart0;
|
||||
+ };
|
||||
+
|
||||
+ memory {
|
||||
+ reg = <0x0 0x0>;
|
||||
+ };
|
||||
+};
|
||||
+
|
||||
+&uart0 {
|
||||
+ status = "okay";
|
||||
+};
|
||||
diff --git a/arch/arm/mach-bcm283x/Kconfig b/arch/arm/mach-bcm283x/Kconfig
|
||||
index 1457f114ccaa..af2f88c47acb 100644
|
||||
--- a/arch/arm/mach-bcm283x/Kconfig
|
||||
+++ b/arch/arm/mach-bcm283x/Kconfig
|
||||
@@ -19,6 +19,12 @@ config MACH_RPI2
|
||||
select CPU_V7
|
||||
select MACH_RPI_COMMON
|
||||
|
||||
+config MACH_RPI3
|
||||
+ bool "RaspberryPi 3 (BCM2837/CORTEX-A53)"
|
||||
+ select CPU_V7
|
||||
+ select MACH_RPI_COMMON
|
||||
+ select ARM_SECURE_MONITOR
|
||||
+
|
||||
endmenu
|
||||
|
||||
config MACH_RPI_DEBUG_UART_BASE
|
||||
diff --git a/arch/arm/mach-bcm283x/core.c b/arch/arm/mach-bcm283x/core.c
|
||||
index fddcb0d1a1d4..26f0996b1cb8 100644
|
||||
--- a/arch/arm/mach-bcm283x/core.c
|
||||
+++ b/arch/arm/mach-bcm283x/core.c
|
||||
@@ -41,6 +41,7 @@ static int bcm2835_clk_init(void)
|
||||
clk = clk_fixed("uart0-pl0110", 3 * 1000 * 1000);
|
||||
clk_register_clkdev(clk, NULL, "uart0-pl0110");
|
||||
clk_register_clkdev(clk, NULL, "20201000.serial");
|
||||
+ clk_register_clkdev(clk, NULL, "3f201000.serial");
|
||||
|
||||
clk = clk_fixed("bcm2835-cs", 1 * 1000 * 1000);
|
||||
clk_register_clkdev(clk, NULL, "bcm2835-cs");
|
||||
diff --git a/images/Makefile.bcm283x b/images/Makefile.bcm283x
|
||||
index d59ef043f05c..d14e648926ac 100644
|
||||
--- a/images/Makefile.bcm283x
|
||||
+++ b/images/Makefile.bcm283x
|
||||
@@ -9,3 +9,7 @@ image-$(CONFIG_MACH_RPI) += barebox-raspberry-pi-1.img
|
||||
pblx-$(CONFIG_MACH_RPI2) += start_raspberry_pi2
|
||||
FILE_barebox-raspberry-pi-2.img = start_raspberry_pi2.pblx
|
||||
image-$(CONFIG_MACH_RPI2) += barebox-raspberry-pi-2.img
|
||||
+
|
||||
+pblx-$(CONFIG_MACH_RPI3) += start_raspberry_pi3
|
||||
+FILE_barebox-raspberry-pi-3.img = start_raspberry_pi3.pblx
|
||||
+image-$(CONFIG_MACH_RPI3) += barebox-raspberry-pi-3.img
|
||||
\ No newline at end of file
|
||||
--
|
||||
2.15.1
|
3
buildroot-external/board/raspberrypi/rpi3/uboot.config
Normal file
3
buildroot-external/board/raspberrypi/rpi3/uboot.config
Normal file
@ -0,0 +1,3 @@
|
||||
CONFIG_TARGET_RPI_3_32B=y
|
||||
CONFIG_SYS_MALLOC_F_LEN=0x2000
|
||||
CONFIG_DEFAULT_DEVICE_TREE="bcm2837-rpi-3-b"
|
51
buildroot-external/board/raspberrypi/uboot-boot.sh
Normal file
51
buildroot-external/board/raspberrypi/uboot-boot.sh
Normal file
@ -0,0 +1,51 @@
|
||||
test -n "${BOOT_ORDER}" || setenv BOOT_ORDER "A B"
|
||||
test -n "${BOOT_A_LEFT}" || setenv BOOT_A_LEFT 3
|
||||
test -n "${BOOT_B_LEFT}" || setenv BOOT_B_LEFT 3
|
||||
|
||||
# HassOS bootargs
|
||||
setenv bootargs_hassos "zram.enabled=1 zram.num_devices=3 apparmor=1 security=apparmor rootwait"
|
||||
|
||||
# HassOS system A/B
|
||||
setenv bootargs_a "root=PARTUUID=8d3d53e3-6d49-4c38-8349-aff6859e82fd rootfstype=squashfs ro"
|
||||
setenv bootargs_b "root=PARTUUID=a3ec664e-32ce-4665-95ea-7ae90ce9aa20 rootfstype=squashfs ro"
|
||||
|
||||
# Preserve origin bootargs
|
||||
setenv bootargs_rpi
|
||||
fdt addr ${fdt_addr}
|
||||
fdt get value bootargs_rpi /chosen bootargs
|
||||
|
||||
setenv bootargs
|
||||
for BOOT_SLOT in "${BOOT_ORDER}"; do
|
||||
if test "x${bootargs}" != "x"; then
|
||||
# skip remaining slots
|
||||
elif test "x${BOOT_SLOT}" = "xA"; then
|
||||
if test ${BOOT_A_LEFT} -gt 0; then
|
||||
setexpr BOOT_A_LEFT ${BOOT_A_LEFT} - 1
|
||||
echo "Found valid slot A, ${BOOT_A_LEFT} attempts remaining"
|
||||
setenv load_kernel "ext4load mmc 0:2 ${kernel_addr_r} zImage"
|
||||
setenv bootargs "${bootargs_hassos} ${bootargs_rpi} ${bootargs_a} rauc.slot=A"
|
||||
fi
|
||||
elif test "x${BOOT_SLOT}" = "xB"; then
|
||||
if test ${BOOT_B_LEFT} -gt 0; then
|
||||
setexpr BOOT_B_LEFT ${BOOT_B_LEFT} - 1
|
||||
echo "Found valid slot B, ${BOOT_B_LEFT} attempts remaining"
|
||||
setenv load_kernel "ext4load mmc 0:4 ${kernel_addr_r} zImage"
|
||||
setenv bootargs "${bootargs_hassos} ${bootargs_rpi} ${bootargs_b} rauc.slot=B"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
if test -n "${bootargs}"; then
|
||||
saveenv
|
||||
else
|
||||
echo "No valid slot found, resetting tries to 3"
|
||||
setenv BOOT_A_LEFT 3
|
||||
setenv BOOT_B_LEFT 3
|
||||
saveenv
|
||||
reset
|
||||
fi
|
||||
|
||||
echo "Loading kernel"
|
||||
run load_kernel
|
||||
echo " Starting kernel"
|
||||
bootz ${kernel_addr_r} - ${fdt_addr}
|
27
buildroot-external/board/raspberrypi/uboot.config
Normal file
27
buildroot-external/board/raspberrypi/uboot.config
Normal file
@ -0,0 +1,27 @@
|
||||
CONFIG_ARM=y
|
||||
CONFIG_ARCH_BCM283X=y
|
||||
CONFIG_SYS_TEXT_BASE=0x00008000
|
||||
CONFIG_OF_BOARD_SETUP=y
|
||||
# CONFIG_CMD_FLASH is not set
|
||||
CONFIG_CMD_GPIO=y
|
||||
CONFIG_CMD_MMC=y
|
||||
CONFIG_CMD_USB=y
|
||||
CONFIG_OF_EMBED=y
|
||||
CONFIG_ENV_EXT4_INTERFACE="mmc"
|
||||
CONFIG_DM_KEYBOARD=y
|
||||
CONFIG_DM_MMC=y
|
||||
CONFIG_MMC_SDHCI=y
|
||||
CONFIG_MMC_SDHCI_BCM2835=y
|
||||
CONFIG_DM_ETH=y
|
||||
CONFIG_PINCTRL=y
|
||||
# CONFIG_PINCTRL_GENERIC is not set
|
||||
# CONFIG_REQUIRE_SERIAL_CONSOLE is not set
|
||||
CONFIG_USB=y
|
||||
CONFIG_DM_USB=y
|
||||
CONFIG_USB_DWC2=y
|
||||
CONFIG_USB_STORAGE=y
|
||||
CONFIG_USB_KEYBOARD=y
|
||||
CONFIG_USB_HOST_ETHER=y
|
||||
CONFIG_USB_ETHER_SMSC95XX=y
|
||||
CONFIG_DM_VIDEO=y
|
||||
CONFIG_PHYS_TO_BUS=y
|
@ -43,5 +43,5 @@ CONFIG_DISK_WRITE=y
|
||||
CONFIG_FS_FAT=y
|
||||
CONFIG_FS_FAT_WRITE=y
|
||||
CONFIG_FS_FAT_LFN=y
|
||||
CONFIG_FS_SQUASHFS=y
|
||||
CONFIG_FS_EXT4=y
|
||||
CONFIG_LZ4_DECOMPRESS=y
|
8
buildroot-external/bootloader/barebox/boot/system0
Normal file
8
buildroot-external/bootloader/barebox/boot/system0
Normal file
@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
global linux.bootargs.dyn.root="root=PARTUUID=8d3d53e3-6d49-4c38-8349-aff6859e82fd rootfstype=squashfs ro"
|
||||
|
||||
mkdir -p /mnt/system
|
||||
mount -t ext4 /dev/disk0.hassos-kernel0 /mnt/system
|
||||
|
||||
global bootm.image="/mnt/system/bzImage"
|
8
buildroot-external/bootloader/barebox/boot/system1
Normal file
8
buildroot-external/bootloader/barebox/boot/system1
Normal file
@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
global linux.bootargs.dyn.root="root=PARTUUID=a3ec664e-32ce-4665-95ea-7ae90ce9aa20 rootfstype=squashfs ro"
|
||||
|
||||
mkdir -p /mnt/system
|
||||
mount -t ext4 /dev/disk0.hassos-kernel1 /mnt/system
|
||||
|
||||
global bootm.image="/mnt/system/bzImage"
|
@ -0,0 +1 @@
|
||||
A B
|
19
buildroot-external/bootloader/uboot.config
Normal file
19
buildroot-external/bootloader/uboot.config
Normal file
@ -0,0 +1,19 @@
|
||||
# CONFIG_LOCALVERSION_AUTO is not set
|
||||
CONFIG_DISTRO_DEFAULTS=y
|
||||
# CONFIG_EXPERT is not set
|
||||
# CONFIG_DISPLAY_CPUINFO is not set
|
||||
# CONFIG_DISPLAY_BOARDINFO is not set
|
||||
CONFIG_SYS_PROMPT="HassOS> "
|
||||
# CONFIG_DOS_PARTITION is not set
|
||||
# CONFIG_ISO_PARTITION is not set
|
||||
CONFIG_EFI_PARTITION=y
|
||||
# CONFIG_ENV_IS_NOWHERE is not set
|
||||
# CONFIG_ENV_IS_IN_FAT is not set
|
||||
CONFIG_ENV_IS_IN_EXT4=y
|
||||
CONFIG_ENV_EXT4_DEVICE_AND_PART="0:6"
|
||||
CONFIG_ENV_EXT4_FILE="/hassos.env"
|
||||
CONFIG_CONSOLE_SCROLL_LINES=10
|
||||
CONFIG_SYS_WHITE_ON_BLACK=y
|
||||
CONFIG_REGEX=y
|
||||
CONFIG_OF_LIBFDT_OVERLAY=y
|
||||
# CONFIG_EFI_LOADER is not set
|
@ -28,7 +28,6 @@ BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF=y
|
||||
BR2_PACKAGE_BUSYBOX_CONFIG="$(BR2_EXTERNAL_HASSOS_PATH)/busybox.config"
|
||||
BR2_PACKAGE_BUSYBOX_INDIVIDUAL_BINARIES=y
|
||||
BR2_PACKAGE_JQ=y
|
||||
BR2_PACKAGE_DOSFSTOOLS=y
|
||||
BR2_PACKAGE_E2FSPROGS=y
|
||||
BR2_PACKAGE_E2FSPROGS_RESIZE2FS=y
|
||||
BR2_PACKAGE_DT_UTILS=y
|
||||
@ -64,8 +63,8 @@ BR2_TARGET_BAREBOX_CUSTOM_VERSION=y
|
||||
BR2_TARGET_BAREBOX_CUSTOM_VERSION_VALUE="2018.05.0"
|
||||
BR2_TARGET_BAREBOX_USE_CUSTOM_CONFIG=y
|
||||
BR2_TARGET_BAREBOX_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_HASSOS_PATH)/board/ova/barebox.config"
|
||||
BR2_TARGET_BAREBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_HASSOS_PATH)/barebox.config"
|
||||
BR2_TARGET_BAREBOX_CUSTOM_EMBEDDED_ENV_PATH="$(BR2_EXTERNAL_HASSOS_PATH)/board/ova/barebox-env $(BR2_EXTERNAL_HASSOS_PATH)/barebox-env"
|
||||
BR2_TARGET_BAREBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_HASSOS_PATH)/bootloader/barebox.config"
|
||||
BR2_TARGET_BAREBOX_CUSTOM_EMBEDDED_ENV_PATH="$(BR2_EXTERNAL_HASSOS_PATH)/bootloader/barebox"
|
||||
BR2_PACKAGE_HOST_DOSFSTOOLS=y
|
||||
BR2_PACKAGE_HOST_E2FSPROGS=y
|
||||
BR2_PACKAGE_HOST_GPTFDISK=y
|
||||
@ -73,7 +72,7 @@ BR2_PACKAGE_HOST_MTOOLS=y
|
||||
BR2_PACKAGE_HOST_RAUC=y
|
||||
BR2_PACKAGE_HASSOS=y
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR="homeassistant/amd64-hassio-supervisor"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_VERSION="105"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_VERSION="107"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_ARGS="-e HOMEASSISTANT_REPOSITORY=homeassistant/qemux86-64-homeassistant"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_PROFILE="hassio-supervisor"
|
||||
BR2_PACKAGE_HASSOS_CLI="homeassistant/amd64-hassio-cli"
|
||||
|
92
buildroot-external/configs/rpi0_w_defconfig
Normal file
92
buildroot-external/configs/rpi0_w_defconfig
Normal file
@ -0,0 +1,92 @@
|
||||
BR2_arm=y
|
||||
BR2_arm1176jzf_s=y
|
||||
BR2_ARM_EABIHF=y
|
||||
BR2_DL_DIR="/cache/dl"
|
||||
BR2_CCACHE=y
|
||||
BR2_CCACHE_DIR="/cache/cc"
|
||||
BR2_GLOBAL_PATCH_DIR="$(BR2_EXTERNAL_HASSOS_PATH)/patches"
|
||||
BR2_TOOLCHAIN_BUILDROOT_GLIBC=y
|
||||
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_14=y
|
||||
BR2_GCC_VERSION_7_X=y
|
||||
BR2_TOOLCHAIN_BUILDROOT_CXX=y
|
||||
BR2_TARGET_GENERIC_HOSTNAME="hassio"
|
||||
BR2_TARGET_GENERIC_ISSUE="Welcome to HassOS"
|
||||
BR2_INIT_SYSTEMD=y
|
||||
BR2_TARGET_GENERIC_GETTY_PORT="tty1"
|
||||
# BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW is not set
|
||||
BR2_ROOTFS_OVERLAY="$(BR2_EXTERNAL_HASSOS_PATH)/rootfs-overlay"
|
||||
BR2_ROOTFS_POST_BUILD_SCRIPT="$(BR2_EXTERNAL_HASSOS_PATH)/scripts/post-build.sh"
|
||||
BR2_ROOTFS_POST_IMAGE_SCRIPT="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/post-image.sh"
|
||||
BR2_ROOTFS_POST_SCRIPT_ARGS="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/rpi0-w"
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_GIT=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/raspberrypi/linux"
|
||||
BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="rpi-4.14.y"
|
||||
BR2_LINUX_KERNEL_DEFCONFIG="bcmrpi"
|
||||
BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_HASSOS_PATH)/kernel.config"
|
||||
BR2_LINUX_KERNEL_LZ4=y
|
||||
BR2_LINUX_KERNEL_DTS_SUPPORT=y
|
||||
BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2708-rpi-0-w"
|
||||
BR2_LINUX_KERNEL_INSTALL_TARGET=y
|
||||
BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
|
||||
BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF=y
|
||||
BR2_PACKAGE_BUSYBOX_CONFIG="$(BR2_EXTERNAL_HASSOS_PATH)/busybox.config"
|
||||
BR2_PACKAGE_BUSYBOX_INDIVIDUAL_BINARIES=y
|
||||
BR2_PACKAGE_JQ=y
|
||||
BR2_PACKAGE_E2FSPROGS=y
|
||||
BR2_PACKAGE_E2FSPROGS_RESIZE2FS=y
|
||||
BR2_PACKAGE_RPI_WIFI_FIRMWARE=y
|
||||
BR2_PACKAGE_RPI_FIRMWARE=y
|
||||
BR2_PACKAGE_GPTFDISK=y
|
||||
BR2_PACKAGE_GPTFDISK_SGDISK=y
|
||||
BR2_PACKAGE_UBOOT_TOOLS=y
|
||||
BR2_PACKAGE_CA_CERTIFICATES=y
|
||||
BR2_PACKAGE_LIBDNET=y
|
||||
BR2_PACKAGE_LIBCGROUP=y
|
||||
BR2_PACKAGE_LIBCGROUP_TOOLS=y
|
||||
BR2_PACKAGE_AVAHI=y
|
||||
BR2_PACKAGE_AVAHI_DAEMON=y
|
||||
BR2_PACKAGE_AVAHI_LIBDNSSD_COMPATIBILITY=y
|
||||
BR2_PACKAGE_DROPBEAR=y
|
||||
# BR2_PACKAGE_DROPBEAR_CLIENT is not set
|
||||
# BR2_PACKAGE_IFUPDOWN_SCRIPTS is not set
|
||||
BR2_PACKAGE_NETWORK_MANAGER=y
|
||||
BR2_PACKAGE_NETWORK_MANAGER_MODEM_MANAGER=y
|
||||
BR2_PACKAGE_TINI=y
|
||||
BR2_PACKAGE_DOCKER_ENGINE=y
|
||||
BR2_PACKAGE_RAUC=y
|
||||
BR2_PACKAGE_RAUC_NETWORK=y
|
||||
# BR2_PACKAGE_SYSTEMD_HWDB is not set
|
||||
# BR2_PACKAGE_SYSTEMD_NETWORKD is not set
|
||||
BR2_PACKAGE_SYSTEMD_RANDOMSEED=y
|
||||
# BR2_PACKAGE_SYSTEMD_RESOLVED is not set
|
||||
BR2_PACKAGE_UTIL_LINUX_PARTX=y
|
||||
BR2_PACKAGE_UTIL_LINUX_ZRAMCTL=y
|
||||
BR2_TARGET_ROOTFS_SQUASHFS=y
|
||||
BR2_TARGET_ROOTFS_SQUASHFS4_LZ4=y
|
||||
# BR2_TARGET_ROOTFS_TAR is not set
|
||||
BR2_TARGET_UBOOT=y
|
||||
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2018.05"
|
||||
BR2_TARGET_UBOOT_USE_CUSTOM_CONFIG=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/rpi0-w/uboot.config"
|
||||
BR2_TARGET_UBOOT_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_HASSOS_PATH)/bootloader/uboot.config $(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/uboot.config"
|
||||
BR2_TARGET_UBOOT_NEEDS_DTC=y
|
||||
BR2_TARGET_UBOOT_BOOT_SCRIPT=y
|
||||
BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/uboot-boot.sh"
|
||||
BR2_PACKAGE_HOST_DOSFSTOOLS=y
|
||||
BR2_PACKAGE_HOST_E2FSPROGS=y
|
||||
BR2_PACKAGE_HOST_GPTFDISK=y
|
||||
BR2_PACKAGE_HOST_MTOOLS=y
|
||||
BR2_PACKAGE_HOST_RAUC=y
|
||||
BR2_PACKAGE_HASSOS=y
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR="homeassistant/armhf-hassio-supervisor"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_VERSION="107"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_ARGS="-e HOMEASSISTANT_REPOSITORY=homeassistant/raspberrypi-homeassistant"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_PROFILE="hassio-supervisor"
|
||||
BR2_PACKAGE_HASSOS_CLI="homeassistant/armhf-hassio-cli"
|
||||
BR2_PACKAGE_HASSOS_CLI_VERSION="3"
|
||||
BR2_PACKAGE_HASSOS_CLI_PROFILE="docker-default"
|
||||
BR2_PACKAGE_HASSOS_APPARMOR_DIR="supervisor/apparmor"
|
||||
BR2_PACKAGE_APPARMOR=y
|
@ -4,7 +4,7 @@ BR2_ARM_FPU_VFPV4=y
|
||||
BR2_DL_DIR="/cache/dl"
|
||||
BR2_CCACHE=y
|
||||
BR2_CCACHE_DIR="/cache/cc"
|
||||
BR2_GLOBAL_PATCH_DIR="$(BR2_EXTERNAL_HASSOS_PATH)/patches $(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/patches"
|
||||
BR2_GLOBAL_PATCH_DIR="$(BR2_EXTERNAL_HASSOS_PATH)/patches"
|
||||
BR2_TOOLCHAIN_BUILDROOT_GLIBC=y
|
||||
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_14=y
|
||||
BR2_GCC_VERSION_7_X=y
|
||||
@ -33,13 +33,12 @@ BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF=y
|
||||
BR2_PACKAGE_BUSYBOX_CONFIG="$(BR2_EXTERNAL_HASSOS_PATH)/busybox.config"
|
||||
BR2_PACKAGE_BUSYBOX_INDIVIDUAL_BINARIES=y
|
||||
BR2_PACKAGE_JQ=y
|
||||
BR2_PACKAGE_DOSFSTOOLS=y
|
||||
BR2_PACKAGE_E2FSPROGS=y
|
||||
BR2_PACKAGE_E2FSPROGS_RESIZE2FS=y
|
||||
BR2_PACKAGE_RPI_FIRMWARE=y
|
||||
BR2_PACKAGE_DT_UTILS=y
|
||||
BR2_PACKAGE_GPTFDISK=y
|
||||
BR2_PACKAGE_GPTFDISK_SGDISK=y
|
||||
BR2_PACKAGE_UBOOT_TOOLS=y
|
||||
BR2_PACKAGE_CA_CERTIFICATES=y
|
||||
BR2_PACKAGE_LIBDNET=y
|
||||
BR2_PACKAGE_LIBCGROUP=y
|
||||
@ -65,13 +64,16 @@ BR2_PACKAGE_UTIL_LINUX_ZRAMCTL=y
|
||||
BR2_TARGET_ROOTFS_SQUASHFS=y
|
||||
BR2_TARGET_ROOTFS_SQUASHFS4_LZ4=y
|
||||
# BR2_TARGET_ROOTFS_TAR is not set
|
||||
BR2_TARGET_BAREBOX=y
|
||||
BR2_TARGET_BAREBOX_CUSTOM_VERSION=y
|
||||
BR2_TARGET_BAREBOX_CUSTOM_VERSION_VALUE="2018.05.0"
|
||||
BR2_TARGET_BAREBOX_USE_CUSTOM_CONFIG=y
|
||||
BR2_TARGET_BAREBOX_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/barebox.config"
|
||||
BR2_TARGET_BAREBOX_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_HASSOS_PATH)/barebox.config $(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/rpi2/barebox.config"
|
||||
BR2_TARGET_BAREBOX_CUSTOM_EMBEDDED_ENV_PATH="$(BR2_EXTERNAL_HASSOS_PATH)/barebox-env $(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/barebox-env"
|
||||
BR2_TARGET_UBOOT=y
|
||||
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2018.05"
|
||||
BR2_TARGET_UBOOT_USE_CUSTOM_CONFIG=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/rpi2/uboot.config"
|
||||
BR2_TARGET_UBOOT_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_HASSOS_PATH)/bootloader/uboot.config $(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/uboot.config"
|
||||
BR2_TARGET_UBOOT_NEEDS_DTC=y
|
||||
BR2_TARGET_UBOOT_BOOT_SCRIPT=y
|
||||
BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/uboot-boot.sh"
|
||||
BR2_PACKAGE_HOST_DOSFSTOOLS=y
|
||||
BR2_PACKAGE_HOST_E2FSPROGS=y
|
||||
BR2_PACKAGE_HOST_GPTFDISK=y
|
||||
@ -79,8 +81,8 @@ BR2_PACKAGE_HOST_MTOOLS=y
|
||||
BR2_PACKAGE_HOST_RAUC=y
|
||||
BR2_PACKAGE_HASSOS=y
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR="homeassistant/armhf-hassio-supervisor"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_VERSION="105"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_ARGS="-e HOMEASSISTANT_REPOSITORY=homeassistant/raspberrypi3-homeassistant"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_VERSION="107"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_ARGS="-e HOMEASSISTANT_REPOSITORY=homeassistant/raspberrypi2-homeassistant"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_PROFILE="hassio-supervisor"
|
||||
BR2_PACKAGE_HASSOS_CLI="homeassistant/armhf-hassio-cli"
|
||||
BR2_PACKAGE_HASSOS_CLI_VERSION="3"
|
||||
|
92
buildroot-external/configs/rpi3_64_defconfig
Normal file
92
buildroot-external/configs/rpi3_64_defconfig
Normal file
@ -0,0 +1,92 @@
|
||||
BR2_aarch64=y
|
||||
BR2_cortex_a53=y
|
||||
BR2_ARM_FPU_VFPV4=y
|
||||
BR2_DL_DIR="/cache/dl"
|
||||
BR2_CCACHE=y
|
||||
BR2_CCACHE_DIR="/cache/cc"
|
||||
BR2_GLOBAL_PATCH_DIR="$(BR2_EXTERNAL_HASSOS_PATH)/patches"
|
||||
BR2_TOOLCHAIN_BUILDROOT_GLIBC=y
|
||||
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_14=y
|
||||
BR2_GCC_VERSION_7_X=y
|
||||
BR2_TOOLCHAIN_BUILDROOT_CXX=y
|
||||
BR2_TARGET_GENERIC_HOSTNAME="hassio"
|
||||
BR2_TARGET_GENERIC_ISSUE="Welcome to HassOS"
|
||||
BR2_INIT_SYSTEMD=y
|
||||
BR2_TARGET_GENERIC_GETTY_PORT="tty1"
|
||||
# BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW is not set
|
||||
BR2_ROOTFS_OVERLAY="$(BR2_EXTERNAL_HASSOS_PATH)/rootfs-overlay"
|
||||
BR2_ROOTFS_POST_BUILD_SCRIPT="$(BR2_EXTERNAL_HASSOS_PATH)/scripts/post-build.sh"
|
||||
BR2_ROOTFS_POST_IMAGE_SCRIPT="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/post-image.sh"
|
||||
BR2_ROOTFS_POST_SCRIPT_ARGS="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/rpi3-64"
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_GIT=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/raspberrypi/linux"
|
||||
BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="rpi-4.14.y"
|
||||
BR2_LINUX_KERNEL_DEFCONFIG="bcmrpi3"
|
||||
BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_HASSOS_PATH)/kernel.config"
|
||||
BR2_LINUX_KERNEL_LZ4=y
|
||||
BR2_LINUX_KERNEL_DTS_SUPPORT=y
|
||||
BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2710-rpi-3-b bcm2710-rpi-3-b-plus bcm2710-rpi-cm3"
|
||||
BR2_LINUX_KERNEL_INSTALL_TARGET=y
|
||||
BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
|
||||
BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF=y
|
||||
BR2_PACKAGE_BUSYBOX_CONFIG="$(BR2_EXTERNAL_HASSOS_PATH)/busybox.config"
|
||||
BR2_PACKAGE_BUSYBOX_INDIVIDUAL_BINARIES=y
|
||||
BR2_PACKAGE_JQ=y
|
||||
BR2_PACKAGE_E2FSPROGS=y
|
||||
BR2_PACKAGE_E2FSPROGS_RESIZE2FS=y
|
||||
BR2_PACKAGE_RPI_WIFI_FIRMWARE=y
|
||||
BR2_PACKAGE_RPI_FIRMWARE=y
|
||||
BR2_PACKAGE_GPTFDISK=y
|
||||
BR2_PACKAGE_GPTFDISK_SGDISK=y
|
||||
BR2_PACKAGE_UBOOT_TOOLS=y
|
||||
BR2_PACKAGE_CA_CERTIFICATES=y
|
||||
BR2_PACKAGE_LIBDNET=y
|
||||
BR2_PACKAGE_LIBCGROUP=y
|
||||
BR2_PACKAGE_LIBCGROUP_TOOLS=y
|
||||
BR2_PACKAGE_AVAHI=y
|
||||
BR2_PACKAGE_AVAHI_DAEMON=y
|
||||
BR2_PACKAGE_AVAHI_LIBDNSSD_COMPATIBILITY=y
|
||||
BR2_PACKAGE_DROPBEAR=y
|
||||
# BR2_PACKAGE_DROPBEAR_CLIENT is not set
|
||||
# BR2_PACKAGE_IFUPDOWN_SCRIPTS is not set
|
||||
BR2_PACKAGE_NETWORK_MANAGER=y
|
||||
BR2_PACKAGE_NETWORK_MANAGER_MODEM_MANAGER=y
|
||||
BR2_PACKAGE_TINI=y
|
||||
BR2_PACKAGE_DOCKER_ENGINE=y
|
||||
BR2_PACKAGE_RAUC=y
|
||||
BR2_PACKAGE_RAUC_NETWORK=y
|
||||
# BR2_PACKAGE_SYSTEMD_HWDB is not set
|
||||
# BR2_PACKAGE_SYSTEMD_NETWORKD is not set
|
||||
BR2_PACKAGE_SYSTEMD_RANDOMSEED=y
|
||||
# BR2_PACKAGE_SYSTEMD_RESOLVED is not set
|
||||
BR2_PACKAGE_UTIL_LINUX_PARTX=y
|
||||
BR2_PACKAGE_UTIL_LINUX_ZRAMCTL=y
|
||||
BR2_TARGET_ROOTFS_SQUASHFS=y
|
||||
BR2_TARGET_ROOTFS_SQUASHFS4_LZ4=y
|
||||
# BR2_TARGET_ROOTFS_TAR is not set
|
||||
BR2_TARGET_UBOOT=y
|
||||
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2018.05"
|
||||
BR2_TARGET_UBOOT_USE_CUSTOM_CONFIG=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/rpi3-64/uboot.config"
|
||||
BR2_TARGET_UBOOT_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_HASSOS_PATH)/bootloader/uboot.config $(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/uboot.config"
|
||||
BR2_TARGET_UBOOT_NEEDS_DTC=y
|
||||
BR2_TARGET_UBOOT_BOOT_SCRIPT=y
|
||||
BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/uboot-boot.sh"
|
||||
BR2_PACKAGE_HOST_DOSFSTOOLS=y
|
||||
BR2_PACKAGE_HOST_E2FSPROGS=y
|
||||
BR2_PACKAGE_HOST_GPTFDISK=y
|
||||
BR2_PACKAGE_HOST_MTOOLS=y
|
||||
BR2_PACKAGE_HOST_RAUC=y
|
||||
BR2_PACKAGE_HASSOS=y
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR="homeassistant/armhf-hassio-supervisor"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_VERSION="107"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_ARGS="-e HOMEASSISTANT_REPOSITORY=homeassistant/raspberrypi3-64-homeassistant"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_PROFILE="hassio-supervisor"
|
||||
BR2_PACKAGE_HASSOS_CLI="homeassistant/aarch64-hassio-cli"
|
||||
BR2_PACKAGE_HASSOS_CLI_VERSION="3"
|
||||
BR2_PACKAGE_HASSOS_CLI_PROFILE="docker-default"
|
||||
BR2_PACKAGE_HASSOS_APPARMOR_DIR="supervisor/apparmor"
|
||||
BR2_PACKAGE_APPARMOR=y
|
92
buildroot-external/configs/rpi3_defconfig
Normal file
92
buildroot-external/configs/rpi3_defconfig
Normal file
@ -0,0 +1,92 @@
|
||||
BR2_arm=y
|
||||
BR2_cortex_a53=y
|
||||
BR2_ARM_FPU_VFPV4=y
|
||||
BR2_DL_DIR="/cache/dl"
|
||||
BR2_CCACHE=y
|
||||
BR2_CCACHE_DIR="/cache/cc"
|
||||
BR2_GLOBAL_PATCH_DIR="$(BR2_EXTERNAL_HASSOS_PATH)/patches"
|
||||
BR2_TOOLCHAIN_BUILDROOT_GLIBC=y
|
||||
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_14=y
|
||||
BR2_GCC_VERSION_7_X=y
|
||||
BR2_TOOLCHAIN_BUILDROOT_CXX=y
|
||||
BR2_TARGET_GENERIC_HOSTNAME="hassio"
|
||||
BR2_TARGET_GENERIC_ISSUE="Welcome to HassOS"
|
||||
BR2_INIT_SYSTEMD=y
|
||||
BR2_TARGET_GENERIC_GETTY_PORT="tty1"
|
||||
# BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW is not set
|
||||
BR2_ROOTFS_OVERLAY="$(BR2_EXTERNAL_HASSOS_PATH)/rootfs-overlay"
|
||||
BR2_ROOTFS_POST_BUILD_SCRIPT="$(BR2_EXTERNAL_HASSOS_PATH)/scripts/post-build.sh"
|
||||
BR2_ROOTFS_POST_IMAGE_SCRIPT="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/post-image.sh"
|
||||
BR2_ROOTFS_POST_SCRIPT_ARGS="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/rpi3"
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_GIT=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/raspberrypi/linux"
|
||||
BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="rpi-4.14.y"
|
||||
BR2_LINUX_KERNEL_DEFCONFIG="bcm2709"
|
||||
BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_HASSOS_PATH)/kernel.config"
|
||||
BR2_LINUX_KERNEL_LZ4=y
|
||||
BR2_LINUX_KERNEL_DTS_SUPPORT=y
|
||||
BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2710-rpi-3-b bcm2710-rpi-3-b-plus bcm2710-rpi-cm3"
|
||||
BR2_LINUX_KERNEL_INSTALL_TARGET=y
|
||||
BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
|
||||
BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF=y
|
||||
BR2_PACKAGE_BUSYBOX_CONFIG="$(BR2_EXTERNAL_HASSOS_PATH)/busybox.config"
|
||||
BR2_PACKAGE_BUSYBOX_INDIVIDUAL_BINARIES=y
|
||||
BR2_PACKAGE_JQ=y
|
||||
BR2_PACKAGE_E2FSPROGS=y
|
||||
BR2_PACKAGE_E2FSPROGS_RESIZE2FS=y
|
||||
BR2_PACKAGE_RPI_WIFI_FIRMWARE=y
|
||||
BR2_PACKAGE_RPI_FIRMWARE=y
|
||||
BR2_PACKAGE_GPTFDISK=y
|
||||
BR2_PACKAGE_GPTFDISK_SGDISK=y
|
||||
BR2_PACKAGE_UBOOT_TOOLS=y
|
||||
BR2_PACKAGE_CA_CERTIFICATES=y
|
||||
BR2_PACKAGE_LIBDNET=y
|
||||
BR2_PACKAGE_LIBCGROUP=y
|
||||
BR2_PACKAGE_LIBCGROUP_TOOLS=y
|
||||
BR2_PACKAGE_AVAHI=y
|
||||
BR2_PACKAGE_AVAHI_DAEMON=y
|
||||
BR2_PACKAGE_AVAHI_LIBDNSSD_COMPATIBILITY=y
|
||||
BR2_PACKAGE_DROPBEAR=y
|
||||
# BR2_PACKAGE_DROPBEAR_CLIENT is not set
|
||||
# BR2_PACKAGE_IFUPDOWN_SCRIPTS is not set
|
||||
BR2_PACKAGE_NETWORK_MANAGER=y
|
||||
BR2_PACKAGE_NETWORK_MANAGER_MODEM_MANAGER=y
|
||||
BR2_PACKAGE_TINI=y
|
||||
BR2_PACKAGE_DOCKER_ENGINE=y
|
||||
BR2_PACKAGE_RAUC=y
|
||||
BR2_PACKAGE_RAUC_NETWORK=y
|
||||
# BR2_PACKAGE_SYSTEMD_HWDB is not set
|
||||
# BR2_PACKAGE_SYSTEMD_NETWORKD is not set
|
||||
BR2_PACKAGE_SYSTEMD_RANDOMSEED=y
|
||||
# BR2_PACKAGE_SYSTEMD_RESOLVED is not set
|
||||
BR2_PACKAGE_UTIL_LINUX_PARTX=y
|
||||
BR2_PACKAGE_UTIL_LINUX_ZRAMCTL=y
|
||||
BR2_TARGET_ROOTFS_SQUASHFS=y
|
||||
BR2_TARGET_ROOTFS_SQUASHFS4_LZ4=y
|
||||
# BR2_TARGET_ROOTFS_TAR is not set
|
||||
BR2_TARGET_UBOOT=y
|
||||
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2018.05"
|
||||
BR2_TARGET_UBOOT_USE_CUSTOM_CONFIG=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/rpi3/uboot.config"
|
||||
BR2_TARGET_UBOOT_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_HASSOS_PATH)/bootloader/uboot.config $(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/uboot.config"
|
||||
BR2_TARGET_UBOOT_NEEDS_DTC=y
|
||||
BR2_TARGET_UBOOT_BOOT_SCRIPT=y
|
||||
BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/uboot-boot.sh"
|
||||
BR2_PACKAGE_HOST_DOSFSTOOLS=y
|
||||
BR2_PACKAGE_HOST_E2FSPROGS=y
|
||||
BR2_PACKAGE_HOST_GPTFDISK=y
|
||||
BR2_PACKAGE_HOST_MTOOLS=y
|
||||
BR2_PACKAGE_HOST_RAUC=y
|
||||
BR2_PACKAGE_HASSOS=y
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR="homeassistant/armhf-hassio-supervisor"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_VERSION="107"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_ARGS="-e HOMEASSISTANT_REPOSITORY=homeassistant/raspberrypi3-homeassistant"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_PROFILE="hassio-supervisor"
|
||||
BR2_PACKAGE_HASSOS_CLI="homeassistant/armhf-hassio-cli"
|
||||
BR2_PACKAGE_HASSOS_CLI_VERSION="3"
|
||||
BR2_PACKAGE_HASSOS_CLI_PROFILE="docker-default"
|
||||
BR2_PACKAGE_HASSOS_APPARMOR_DIR="supervisor/apparmor"
|
||||
BR2_PACKAGE_APPARMOR=y
|
92
buildroot-external/configs/rpi_defconfig
Normal file
92
buildroot-external/configs/rpi_defconfig
Normal file
@ -0,0 +1,92 @@
|
||||
BR2_arm=y
|
||||
BR2_arm1176jzf_s=y
|
||||
BR2_ARM_EABIHF=y
|
||||
BR2_DL_DIR="/cache/dl"
|
||||
BR2_CCACHE=y
|
||||
BR2_CCACHE_DIR="/cache/cc"
|
||||
BR2_GLOBAL_PATCH_DIR="$(BR2_EXTERNAL_HASSOS_PATH)/patches"
|
||||
BR2_TOOLCHAIN_BUILDROOT_GLIBC=y
|
||||
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_14=y
|
||||
BR2_GCC_VERSION_7_X=y
|
||||
BR2_TOOLCHAIN_BUILDROOT_CXX=y
|
||||
BR2_TARGET_GENERIC_HOSTNAME="hassio"
|
||||
BR2_TARGET_GENERIC_ISSUE="Welcome to HassOS"
|
||||
BR2_INIT_SYSTEMD=y
|
||||
BR2_TARGET_GENERIC_GETTY_PORT="tty1"
|
||||
# BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW is not set
|
||||
BR2_ROOTFS_OVERLAY="$(BR2_EXTERNAL_HASSOS_PATH)/rootfs-overlay"
|
||||
BR2_ROOTFS_POST_BUILD_SCRIPT="$(BR2_EXTERNAL_HASSOS_PATH)/scripts/post-build.sh"
|
||||
BR2_ROOTFS_POST_IMAGE_SCRIPT="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/post-image.sh"
|
||||
BR2_ROOTFS_POST_SCRIPT_ARGS="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/rpi"
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_GIT=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/raspberrypi/linux"
|
||||
BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="rpi-4.14.y"
|
||||
BR2_LINUX_KERNEL_DEFCONFIG="bcmrpi"
|
||||
BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_HASSOS_PATH)/kernel.config"
|
||||
BR2_LINUX_KERNEL_LZ4=y
|
||||
BR2_LINUX_KERNEL_DTS_SUPPORT=y
|
||||
BR2_LINUX_KERNEL_INTREE_DTS_NAME="bcm2708-rpi-b bcm2708-rpi-b-plus bcm2708-rpi-cm"
|
||||
BR2_LINUX_KERNEL_INSTALL_TARGET=y
|
||||
BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
|
||||
BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF=y
|
||||
BR2_PACKAGE_BUSYBOX_CONFIG="$(BR2_EXTERNAL_HASSOS_PATH)/busybox.config"
|
||||
BR2_PACKAGE_BUSYBOX_INDIVIDUAL_BINARIES=y
|
||||
BR2_PACKAGE_JQ=y
|
||||
BR2_PACKAGE_E2FSPROGS=y
|
||||
BR2_PACKAGE_E2FSPROGS_RESIZE2FS=y
|
||||
BR2_PACKAGE_RPI_WIFI_FIRMWARE=y
|
||||
BR2_PACKAGE_RPI_FIRMWARE=y
|
||||
BR2_PACKAGE_GPTFDISK=y
|
||||
BR2_PACKAGE_GPTFDISK_SGDISK=y
|
||||
BR2_PACKAGE_UBOOT_TOOLS=y
|
||||
BR2_PACKAGE_CA_CERTIFICATES=y
|
||||
BR2_PACKAGE_LIBDNET=y
|
||||
BR2_PACKAGE_LIBCGROUP=y
|
||||
BR2_PACKAGE_LIBCGROUP_TOOLS=y
|
||||
BR2_PACKAGE_AVAHI=y
|
||||
BR2_PACKAGE_AVAHI_DAEMON=y
|
||||
BR2_PACKAGE_AVAHI_LIBDNSSD_COMPATIBILITY=y
|
||||
BR2_PACKAGE_DROPBEAR=y
|
||||
# BR2_PACKAGE_DROPBEAR_CLIENT is not set
|
||||
# BR2_PACKAGE_IFUPDOWN_SCRIPTS is not set
|
||||
BR2_PACKAGE_NETWORK_MANAGER=y
|
||||
BR2_PACKAGE_NETWORK_MANAGER_MODEM_MANAGER=y
|
||||
BR2_PACKAGE_TINI=y
|
||||
BR2_PACKAGE_DOCKER_ENGINE=y
|
||||
BR2_PACKAGE_RAUC=y
|
||||
BR2_PACKAGE_RAUC_NETWORK=y
|
||||
# BR2_PACKAGE_SYSTEMD_HWDB is not set
|
||||
# BR2_PACKAGE_SYSTEMD_NETWORKD is not set
|
||||
BR2_PACKAGE_SYSTEMD_RANDOMSEED=y
|
||||
# BR2_PACKAGE_SYSTEMD_RESOLVED is not set
|
||||
BR2_PACKAGE_UTIL_LINUX_PARTX=y
|
||||
BR2_PACKAGE_UTIL_LINUX_ZRAMCTL=y
|
||||
BR2_TARGET_ROOTFS_SQUASHFS=y
|
||||
BR2_TARGET_ROOTFS_SQUASHFS4_LZ4=y
|
||||
# BR2_TARGET_ROOTFS_TAR is not set
|
||||
BR2_TARGET_UBOOT=y
|
||||
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2018.05"
|
||||
BR2_TARGET_UBOOT_USE_CUSTOM_CONFIG=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/rpi/uboot.config"
|
||||
BR2_TARGET_UBOOT_CONFIG_FRAGMENT_FILES="$(BR2_EXTERNAL_HASSOS_PATH)/bootloader/uboot.config $(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/uboot.config"
|
||||
BR2_TARGET_UBOOT_NEEDS_DTC=y
|
||||
BR2_TARGET_UBOOT_BOOT_SCRIPT=y
|
||||
BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE="$(BR2_EXTERNAL_HASSOS_PATH)/board/raspberrypi/uboot-boot.sh"
|
||||
BR2_PACKAGE_HOST_DOSFSTOOLS=y
|
||||
BR2_PACKAGE_HOST_E2FSPROGS=y
|
||||
BR2_PACKAGE_HOST_GPTFDISK=y
|
||||
BR2_PACKAGE_HOST_MTOOLS=y
|
||||
BR2_PACKAGE_HOST_RAUC=y
|
||||
BR2_PACKAGE_HASSOS=y
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR="homeassistant/armhf-hassio-supervisor"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_VERSION="107"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_ARGS="-e HOMEASSISTANT_REPOSITORY=homeassistant/raspberrypi-homeassistant"
|
||||
BR2_PACKAGE_HASSOS_SUPERVISOR_PROFILE="hassio-supervisor"
|
||||
BR2_PACKAGE_HASSOS_CLI="homeassistant/armhf-hassio-cli"
|
||||
BR2_PACKAGE_HASSOS_CLI_VERSION="3"
|
||||
BR2_PACKAGE_HASSOS_CLI_PROFILE="docker-default"
|
||||
BR2_PACKAGE_HASSOS_APPARMOR_DIR="supervisor/apparmor"
|
||||
BR2_PACKAGE_APPARMOR=y
|
Binary file not shown.
@ -18,7 +18,7 @@
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
|
||||
system0 {
|
||||
A {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
remaining_attempts@0 {
|
||||
@ -32,7 +32,7 @@
|
||||
default = <20>;
|
||||
};
|
||||
};
|
||||
system1 {
|
||||
B {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
remaining_attempts@8 {
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,34 +0,0 @@
|
||||
From cf05dfaa34d8502041aa2354f3b8c97ca4d250c9 Mon Sep 17 00:00:00 2001
|
||||
From: Pascal Vizeli <pvizeli@syshack.ch>
|
||||
Date: Thu, 7 Jun 2018 17:36:00 +0000
|
||||
Subject: [PATCH 1/1] drivers: of: bugfix partition fixups
|
||||
|
||||
If we load a new device tree for linux kernel with a diferent layout,
|
||||
the fixup of partition going into endless loop. Exactly the of_find_property
|
||||
function will never come back on a invalid device_node.
|
||||
|
||||
My patch check, if the device will exists on device tree before we run the
|
||||
fixup.
|
||||
|
||||
Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>
|
||||
---
|
||||
drivers/of/partition.c | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
diff --git a/drivers/of/partition.c b/drivers/of/partition.c
|
||||
index aa6e601b7..17e420964 100644
|
||||
--- a/drivers/of/partition.c
|
||||
+++ b/drivers/of/partition.c
|
||||
@@ -140,6 +140,9 @@ static int of_partition_fixup(struct device_node *root, void *ctx)
|
||||
if (!cdev->device_node)
|
||||
return -EINVAL;
|
||||
|
||||
+ if (!of_find_node_by_path(cdev->device_node->full_name))
|
||||
+ return -EINVAL;
|
||||
+
|
||||
list_for_each_entry(partcdev, &cdev->partitions, partition_entry) {
|
||||
if (partcdev->flags & DEVFS_PARTITION_FROM_TABLE)
|
||||
continue;
|
||||
--
|
||||
2.17.1
|
||||
|
@ -1,161 +0,0 @@
|
||||
From 5facf78a36c30c47849c338bf685f69849173f87 Mon Sep 17 00:00:00 2001
|
||||
From: Pascal Vizeli <pvizeli@syshack.ch>
|
||||
Date: Fri, 8 Jun 2018 20:45:32 +0000
|
||||
Subject: [PATCH 1/1] command: add fix_bootargs
|
||||
|
||||
Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>
|
||||
---
|
||||
commands/Kconfig | 13 +++++
|
||||
commands/Makefile | 1 +
|
||||
commands/fix_bootargs.c | 105 ++++++++++++++++++++++++++++++++++++++++
|
||||
3 files changed, 119 insertions(+)
|
||||
create mode 100644 commands/fix_bootargs.c
|
||||
|
||||
diff --git a/commands/Kconfig b/commands/Kconfig
|
||||
index 951a86963..4cc55a358 100644
|
||||
--- a/commands/Kconfig
|
||||
+++ b/commands/Kconfig
|
||||
@@ -2137,6 +2137,19 @@ config CMD_SEED
|
||||
help
|
||||
Seed the pseudo random number generator (PRNG)
|
||||
|
||||
+config CMD_FIX_BOOTARGS
|
||||
+ tristate
|
||||
+ select GLOBALVAR
|
||||
+ select OFTREE
|
||||
+ prompt "fix_bootargs"
|
||||
+ help
|
||||
+ Read bootargs from device tree and set to 'linux.bootargs.chosen'
|
||||
+
|
||||
+ Usage: fix_bootargs [-f DTB]
|
||||
+
|
||||
+ Options:
|
||||
+ -f DTB Read it from a dtb file.
|
||||
+
|
||||
# end Miscellaneous commands
|
||||
endmenu
|
||||
|
||||
diff --git a/commands/Makefile b/commands/Makefile
|
||||
index eb4796389..fafa8b145 100644
|
||||
--- a/commands/Makefile
|
||||
+++ b/commands/Makefile
|
||||
@@ -122,4 +122,5 @@ obj-$(CONFIG_CMD_SPD_DECODE) += spd_decode.o
|
||||
obj-$(CONFIG_CMD_MMC_EXTCSD) += mmc_extcsd.o
|
||||
obj-$(CONFIG_CMD_NAND_BITFLIP) += nand-bitflip.o
|
||||
obj-$(CONFIG_CMD_SEED) += seed.o
|
||||
+obj-$(CONFIG_CMD_FIX_BOOTARGS) += fix_bootargs.o
|
||||
obj-$(CONFIG_CMD_IP_ROUTE_GET) += ip-route-get.o
|
||||
diff --git a/commands/fix_bootargs.c b/commands/fix_bootargs.c
|
||||
new file mode 100644
|
||||
index 000000000..f58a4ab1d
|
||||
--- /dev/null
|
||||
+++ b/commands/fix_bootargs.c
|
||||
@@ -0,0 +1,105 @@
|
||||
+/*
|
||||
+ * of_dump.c - dump devicetrees to the console
|
||||
+ *
|
||||
+ * Copyright (c) 2018 Pascal Vizeli <pvizeli@syshack.ch>, Hass.io
|
||||
+ *
|
||||
+ * See file CREDITS for list of people who contributed to this
|
||||
+ * project.
|
||||
+ *
|
||||
+ * This program is free software; you can redistribute it and/or modify
|
||||
+ * it under the terms of the GNU General Public License version 2
|
||||
+ * as published by the Free Software Foundation.
|
||||
+ *
|
||||
+ * This program is distributed in the hope that it will be useful,
|
||||
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
+ * GNU General Public License for more details.
|
||||
+ *
|
||||
+ */
|
||||
+
|
||||
+#include <common.h>
|
||||
+#include <libfile.h>
|
||||
+#include <of.h>
|
||||
+#include <command.h>
|
||||
+#include <malloc.h>
|
||||
+#include <linux/ctype.h>
|
||||
+#include <errno.h>
|
||||
+#include <globalvar.h>
|
||||
+#include <getopt.h>
|
||||
+#include <linux/err.h>
|
||||
+
|
||||
+static int do_fix_bootargs(int argc, char *argv[])
|
||||
+{
|
||||
+ int opt;
|
||||
+ int ret = 0;
|
||||
+ struct device_node *root = NULL, *node = NULL, *of_free = NULL;
|
||||
+ struct property *prop = NULL;
|
||||
+ char *dtbfile = NULL;
|
||||
+ size_t size;
|
||||
+
|
||||
+ while ((opt = getopt(argc, argv, "f")) > 0) {
|
||||
+ switch (opt) {
|
||||
+ case 'f':
|
||||
+ dtbfile = optarg;
|
||||
+ break;
|
||||
+ default:
|
||||
+ return COMMAND_ERROR_USAGE;
|
||||
+ }
|
||||
+ }
|
||||
+
|
||||
+ if (dtbfile) {
|
||||
+ void *fdt;
|
||||
+
|
||||
+ fdt = read_file(dtbfile, &size);
|
||||
+ if (!fdt) {
|
||||
+ printf("unable to read %s: %s\n", dtbfile, strerror(errno));
|
||||
+ return -errno;
|
||||
+ }
|
||||
+
|
||||
+ root = of_unflatten_dtb(fdt);
|
||||
+
|
||||
+ free(fdt);
|
||||
+
|
||||
+ if (IS_ERR(root)) {
|
||||
+ ret = PTR_ERR(root);
|
||||
+ goto end;
|
||||
+ }
|
||||
+
|
||||
+ of_free = root;
|
||||
+ } else {
|
||||
+ root = of_get_root_node();
|
||||
+ }
|
||||
+
|
||||
+ node = of_find_node_by_path_or_alias(root, "/chosen");
|
||||
+ if (!node) {
|
||||
+ printf("Cannot find chosen\n");
|
||||
+ ret = -ENOENT;
|
||||
+ goto end;
|
||||
+ }
|
||||
+
|
||||
+ prop = of_find_property(node, "bootargs", NULL);
|
||||
+ if (!prop) {
|
||||
+ printf("Cannot find bootargs\n");
|
||||
+ ret = -ENOENT;
|
||||
+ goto end;
|
||||
+ }
|
||||
+
|
||||
+ ret = globalvar_add_simple("linux.bootargs.chosen", prop->value);
|
||||
+
|
||||
+end:
|
||||
+ if (of_free)
|
||||
+ of_delete_node(of_free);
|
||||
+ return ret;
|
||||
+}
|
||||
+
|
||||
+BAREBOX_CMD_HELP_START(fix_bootargs)
|
||||
+BAREBOX_CMD_HELP_TEXT("Options:")
|
||||
+BAREBOX_CMD_HELP_OPT ("-f dtb", "work on dtb instead of internal devicetree\n")
|
||||
+BAREBOX_CMD_HELP_END
|
||||
+
|
||||
+BAREBOX_CMD_START(fix_bootargs)
|
||||
+ .cmd = do_fix_bootargs,
|
||||
+ BAREBOX_CMD_DESC("dump devicetree nodes")
|
||||
+ BAREBOX_CMD_OPTS("[-f DTB]")
|
||||
+ BAREBOX_CMD_HELP(cmd_fix_bootargs_help)
|
||||
+BAREBOX_CMD_END
|
||||
--
|
||||
2.17.1
|
||||
|
1
buildroot-external/rootfs-overlay/etc/fw_env.config
Normal file
1
buildroot-external/rootfs-overlay/etc/fw_env.config
Normal file
@ -0,0 +1 @@
|
||||
/mnt/state/hassos.env 0x0000 0x4000
|
@ -2,7 +2,7 @@
|
||||
compatible=%COMPATIBLE%
|
||||
mountprefix=/run/rauc
|
||||
statusfile=/mnt/data/rauc.db
|
||||
bootloader=barebox
|
||||
bootloader=%BOOTLOADER%
|
||||
|
||||
[keyring]
|
||||
path=/etc/rauc/keyring.pem
|
||||
@ -10,14 +10,24 @@ path=/etc/rauc/keyring.pem
|
||||
[slot.boot.0]
|
||||
device=/dev/disk/by-partuuid/b3dd0952-733c-4c88-8cba-cab9b8b4377f
|
||||
type=vfs
|
||||
bootname=boot
|
||||
|
||||
[slot.kernel.0]
|
||||
device=/dev/disk/by-partuuid/26700fc6-b0bc-4ccf-9837-ea1a4cba3e65
|
||||
type=ext4
|
||||
bootname=A
|
||||
|
||||
[slot.kernel.1]
|
||||
device=/dev/disk/by-partuuid/fc02a4f0-5350-406f-93a2-56cbed636b5f
|
||||
type=ext4
|
||||
bootname=B
|
||||
|
||||
[slot.rootfs.0]
|
||||
device=/dev/disk/by-partuuid/8d3d53e3-6d49-4c38-8349-aff6859e82fd
|
||||
type=raw
|
||||
bootname=system0
|
||||
parent=kernel.0
|
||||
|
||||
[slot.rootfs.1]
|
||||
device=/dev/disk/by-partuuid/a3ec664e-32ce-4665-95ea-7ae90ce9aa20
|
||||
type=raw
|
||||
bootname=system1
|
||||
parent=kernel.1
|
||||
|
||||
|
@ -0,0 +1 @@
|
||||
/usr/lib/systemd/system/mnt-state.mount
|
0
buildroot-external/rootfs-overlay/mnt/state/.empty
Normal file
0
buildroot-external/rootfs-overlay/mnt/state/.empty
Normal file
@ -11,4 +11,4 @@ Where=/mnt/boot
|
||||
Type=auto
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
WantedBy=local-fs.target
|
||||
|
@ -12,4 +12,4 @@ Where=/mnt/data
|
||||
Type=ext4
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
WantedBy=local-fs.target
|
||||
|
@ -10,4 +10,4 @@ Where=/mnt/overlay
|
||||
Type=ext4
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
WantedBy=local-fs.target
|
||||
|
@ -0,0 +1,14 @@
|
||||
[Unit]
|
||||
Description=HassOS bootstate partition
|
||||
DefaultDependencies=no
|
||||
Before=umount.target
|
||||
After=local-fs.target rauc.service
|
||||
Conflicts=umount.target
|
||||
|
||||
[Mount]
|
||||
What=LABEL=hassos-bootstate
|
||||
Where=/mnt/state
|
||||
Type=ext2
|
||||
|
||||
[Install]
|
||||
WantedBy=local-fs.target
|
@ -2,7 +2,7 @@
|
||||
Description=HassOS mark boot partition as good
|
||||
|
||||
[Timer]
|
||||
OnBootSec=30sec
|
||||
OnBootSec=1min
|
||||
|
||||
[Install]
|
||||
WantedBy=timers.target
|
||||
|
@ -12,7 +12,7 @@ fi
|
||||
|
||||
# Resize & Reload partition
|
||||
echo "[INFO] Update hassos-data partition"
|
||||
sgdisk -d 6 -n 6:0:0 -c 6:"hassos-data" -t 6:"0FC63DAF-8483-4772-8E79-3D69D8477DE4" -u 6:"a52a4597-fa3a-4851-aefd-2fbe9f849079" ${DEVICE_ROOT}
|
||||
sgdisk -d 8 -n 8:0:0 -c 8:"hassos-data" -t 8:"0FC63DAF-8483-4772-8E79-3D69D8477DE4" -u 8:"a52a4597-fa3a-4851-aefd-2fbe9f849079" ${DEVICE_ROOT}
|
||||
sgdisk -v ${DEVICE_ROOT}
|
||||
partx -u ${DEVICE_ROOT}
|
||||
|
||||
|
@ -4,13 +4,16 @@ BOOT_UUID="b3dd0952-733c-4c88-8cba-cab9b8b4377f"
|
||||
BOOTSTATE_UUID="33236519-7F32-4DFF-8002-3390B62C309D"
|
||||
SYSTEM0_UUID="8d3d53e3-6d49-4c38-8349-aff6859e82fd"
|
||||
SYSTEM1_UUID="a3ec664e-32ce-4665-95ea-7ae90ce9aa20"
|
||||
KERNEL0_UUID="26700fc6-b0bc-4ccf-9837-ea1a4cba3e65"
|
||||
KERNEL1_UUID="fc02a4f0-5350-406f-93a2-56cbed636b5f"
|
||||
OVERLAY_UUID="f1326040-5236-40eb-b683-aaa100a9afcf"
|
||||
DATA_UUID="a52a4597-fa3a-4851-aefd-2fbe9f849079"
|
||||
|
||||
BOOT_SIZE=32M
|
||||
BOOTSTATE_SIZE=8M
|
||||
SYSTEM_SIZE=256M
|
||||
OVERLAY_SIZE=64M
|
||||
KERNEL_SIZE=16M
|
||||
OVERLAY_SIZE=96M
|
||||
DATA_SIZE=1G
|
||||
|
||||
|
||||
@ -33,17 +36,58 @@ function create_overlay_image() {
|
||||
}
|
||||
|
||||
|
||||
function create_kernel_image() {
|
||||
local kernel0_img="${1}/kernel0.ext4"
|
||||
local kernel1_img="${1}/kernel1.ext4"
|
||||
local kernel=${1}/${2}
|
||||
|
||||
# Make image
|
||||
dd if=/dev/zero of=${kernel0_img} bs=${KERNEL_SIZE} count=1
|
||||
mkfs.ext4 -L "hassos-kernel0" -E lazy_itable_init=0,lazy_journal_init=0 ${kernel0_img}
|
||||
dd if=/dev/zero of=${kernel1_img} bs=${KERNEL_SIZE} count=1
|
||||
mkfs.ext4 -L "hassos-kernel1" -E lazy_itable_init=0,lazy_journal_init=0 ${kernel1_img}
|
||||
|
||||
# Mount / init file structs
|
||||
mkdir -p /mnt/data/
|
||||
mount -o loop ${kernel0_img} /mnt/data
|
||||
cp -f ${kernel} /mnt/data/
|
||||
umount /mnt/data
|
||||
}
|
||||
|
||||
|
||||
function create_barebox_state_image() {
|
||||
local bootstate_img="${1}/bootstate.img"
|
||||
|
||||
dd if=/dev/zero of=${bootstate_img} bs=${BOOTSTATE_SIZE} count=1
|
||||
}
|
||||
|
||||
|
||||
function create_uboot_state_image() {
|
||||
local bootstate_img="${1}/bootstate.img"
|
||||
|
||||
dd if=/dev/zero of=${bootstate_img} bs=${BOOTSTATE_SIZE} count=1
|
||||
#mkfs.ext4 -L "hassos-bootstate" -E lazy_itable_init=0 -O ^has_journal ${bootstate_img}
|
||||
mkfs.ext2 -L "hassos-bootstate" -E lazy_itable_init=0 ${bootstate_img}
|
||||
}
|
||||
|
||||
|
||||
function create_disk_image() {
|
||||
local boot_img="${1}/boot.vfat"
|
||||
local rootfs_img="${1}/rootfs.squashfs"
|
||||
local overlay_img="${1}/overlay.ext4"
|
||||
local data_img="${1}/data.ext4"
|
||||
local kernel0_img="${1}/kernel0.ext4"
|
||||
local kernel1_img="${1}/kernel1.ext4"
|
||||
local bootstate_img="${1}/bootstate.img"
|
||||
local hdd_img=${2}
|
||||
local hdd_count=${3:-2}
|
||||
|
||||
local loop_dev="/dev/mapper/$(losetup -f | cut -d'/' -f3)"
|
||||
local boot_offset=0
|
||||
local bootstate_offset=0
|
||||
local rootfs_offset=0
|
||||
local kernel0_offset=0
|
||||
local kernel1_offset=0
|
||||
local overlay_offset=0
|
||||
local data_offset=0
|
||||
|
||||
@ -54,18 +98,33 @@ function create_disk_image() {
|
||||
# Partition layout
|
||||
boot_offset="$(sgdisk -F ${hdd_img})"
|
||||
sgdisk -n 1:0:+${BOOT_SIZE} -c 1:"hassos-boot" -t 1:"C12A7328-F81F-11D2-BA4B-00A0C93EC93B" -u 1:${BOOT_UUID} ${hdd_img}
|
||||
|
||||
kernel0_offset="$(sgdisk -F ${hdd_img})"
|
||||
sgdisk -n 2:0:+${KERNEL_SIZE} -c 2:"hassos-kernel0" -t 2:"0FC63DAF-8483-4772-8E79-3D69D8477DE4" -u 2:${KERNEL0_UUID} ${hdd_img}
|
||||
|
||||
rootfs_offset="$(sgdisk -F ${hdd_img})"
|
||||
sgdisk -n 2:0:+${SYSTEM_SIZE} -c 2:"hassos-system0" -t 2:"0FC63DAF-8483-4772-8E79-3D69D8477DE4" -u 2:${SYSTEM0_UUID} ${hdd_img}
|
||||
sgdisk -n 3:0:+${SYSTEM_SIZE} -c 3:"hassos-system1" -t 3:"0FC63DAF-8483-4772-8E79-3D69D8477DE4" -u 3:${SYSTEM1_UUID} ${hdd_img}
|
||||
sgdisk -n 4:0:+${BOOTSTATE_SIZE} -c 4:"hassos-bootstate" -u 4:${BOOTSTATE_UUID} ${hdd_img}
|
||||
sgdisk -n 3:0:+${SYSTEM_SIZE} -c 3:"hassos-system0" -t 3:"0FC63DAF-8483-4772-8E79-3D69D8477DE4" -u 3:${SYSTEM0_UUID} ${hdd_img}
|
||||
|
||||
kernel1_offset="$(sgdisk -F ${hdd_img})"
|
||||
sgdisk -n 4:0:+${KERNEL_SIZE} -c 4:"hassos-kernel1" -t 4:"0FC63DAF-8483-4772-8E79-3D69D8477DE4" -u 4:${KERNEL1_UUID} ${hdd_img}
|
||||
|
||||
sgdisk -n 5:0:+${SYSTEM_SIZE} -c 5:"hassos-system1" -t 5:"0FC63DAF-8483-4772-8E79-3D69D8477DE4" -u 5:${SYSTEM1_UUID} ${hdd_img}
|
||||
|
||||
bootstate_offset="$(sgdisk -F ${hdd_img})"
|
||||
sgdisk -n 6:0:+${BOOTSTATE_SIZE} -c 6:"hassos-bootstate" -u 6:${BOOTSTATE_UUID} ${hdd_img}
|
||||
|
||||
overlay_offset="$(sgdisk -F ${hdd_img})"
|
||||
sgdisk -n 5:0:+${OVERLAY_SIZE} -c 5:"hassos-overlay" -t 5:"0FC63DAF-8483-4772-8E79-3D69D8477DE4" -u 5:${OVERLAY_UUID} ${hdd_img}
|
||||
sgdisk -n 7:0:+${OVERLAY_SIZE} -c 7:"hassos-overlay" -t 7:"0FC63DAF-8483-4772-8E79-3D69D8477DE4" -u 7:${OVERLAY_UUID} ${hdd_img}
|
||||
|
||||
data_offset="$(sgdisk -F ${hdd_img})"
|
||||
sgdisk -n 6:0:+${DATA_SIZE} -c 6:"hassos-data" -t 6:"0FC63DAF-8483-4772-8E79-3D69D8477DE4" -u 6:${DATA_UUID} ${hdd_img}
|
||||
sgdisk -v
|
||||
sgdisk -n 8:0:+${DATA_SIZE} -c 8:"hassos-data" -t 8:"0FC63DAF-8483-4772-8E79-3D69D8477DE4" -u 8:${DATA_UUID} ${hdd_img}
|
||||
|
||||
# Write Images
|
||||
sgdisk -v
|
||||
dd if=${boot_img} of=${hdd_img} conv=notrunc bs=512 obs=512 seek=${boot_offset}
|
||||
dd if=${bootstate_img} of=${hdd_img} conv=notrunc bs=512 obs=512 seek=${bootstate_offset}
|
||||
dd if=${kernel0_img} of=${hdd_img} conv=notrunc bs=512 obs=512 seek=${kernel0_offset}
|
||||
dd if=${kernel1_img} of=${hdd_img} conv=notrunc bs=512 obs=512 seek=${kernel1_offset}
|
||||
dd if=${rootfs_img} of=${hdd_img} conv=notrunc bs=512 obs=512 seek=${rootfs_offset}
|
||||
dd if=${overlay_img} of=${hdd_img} conv=notrunc bs=512 obs=512 seek=${overlay_offset}
|
||||
dd if=${data_img} of=${hdd_img} conv=notrunc bs=512 obs=512 seek=${data_offset}
|
||||
@ -76,5 +135,5 @@ function fix_disk_image_mbr() {
|
||||
local hdd_img=${1}
|
||||
|
||||
sgdisk -t 1:"E3C9E316-0B5C-4DB8-817D-F92DF00215AE" ${hdd_img}
|
||||
dd if=${BR2_EXTERNAL_HASSOS_PATH}/scripts/mbr.img of=${hdd_img} conv=notrunc bs=512 count=1
|
||||
dd if=${BR2_EXTERNAL_HASSOS_PATH}/misc/mbr.img of=${hdd_img} conv=notrunc bs=512 count=1
|
||||
}
|
||||
|
@ -33,10 +33,11 @@ install_hassos_cli
|
||||
|
||||
# Settup rauc
|
||||
sed -i "s/%COMPATIBLE%/${HASSOS_ID}-${BOARD_ID}/g" ${TARGET_DIR}/etc/rauc/system.conf
|
||||
sed -i "s/%BOOTLOADER%/${BOOTLOADER}/g" ${TARGET_DIR}/etc/rauc/system.conf
|
||||
|
||||
# Settup the correct CA
|
||||
if [ "${DEPLOYMENT}" == "development" ]; then
|
||||
cp ${BR2_EXTERNAL_HASSOS_PATH}/ca/provisioning-ca.pem ${TARGET_DIR}/etc/rauc/keyring.pem
|
||||
cp ${BR2_EXTERNAL_HASSOS_PATH}/misc/provisioning-ca.pem ${TARGET_DIR}/etc/rauc/keyring.pem
|
||||
else
|
||||
cp ${BR2_EXTERNAL_HASSOS_PATH}/ca/rel-ca.pem ${TARGET_DIR}/etc/rauc/keyring.pem
|
||||
cp ${BR2_EXTERNAL_HASSOS_PATH}/misc/rel-ca.pem ${TARGET_DIR}/etc/rauc/keyring.pem
|
||||
fi
|
||||
|
Binary file not shown.
Binary file not shown.
@ -1,85 +0,0 @@
|
||||
/dts-v1/;
|
||||
/plugin/;
|
||||
|
||||
/ {
|
||||
compatible = "brcm,bcm2835", "brcm,bcm2708", "brcm,bcm2709";
|
||||
|
||||
fragment@0 {
|
||||
target = <&sdhost>;
|
||||
__overlay__ {
|
||||
status = "okay";
|
||||
partitions {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
compatible = "fixed-partitions";
|
||||
|
||||
backend_state: partition@22100000 {
|
||||
label = "state";
|
||||
reg = <0x22100000 0x800000>;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
fragment@1 {
|
||||
target-path = "/";
|
||||
__overlay__ {
|
||||
state: state {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
magic = <0xef98423f>;
|
||||
compatible = "barebox,state";
|
||||
backend = <&backend_state>;
|
||||
backend-type = "raw";
|
||||
backend-stridesize = <4048>;
|
||||
|
||||
bootstate {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
|
||||
system0 {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
remaining_attempts@0 {
|
||||
reg = <0x0 0x4>;
|
||||
type = "uint32";
|
||||
default = <3>;
|
||||
};
|
||||
priority@4 {
|
||||
reg = <0x4 0x4>;
|
||||
type = "uint32";
|
||||
default = <20>;
|
||||
};
|
||||
};
|
||||
system1 {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
remaining_attempts@8 {
|
||||
reg = <0x8 0x4>;
|
||||
type = "uint32";
|
||||
default = <0>;
|
||||
};
|
||||
priority@c {
|
||||
reg = <0xc 0x4>;
|
||||
type = "uint32";
|
||||
default = <10>;
|
||||
};
|
||||
};
|
||||
last_chosen@10 {
|
||||
reg = <0x10 0x4>;
|
||||
type = "uint32";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
fragment@3 {
|
||||
target-path = "/aliases";
|
||||
__overlay__ {
|
||||
state = "/state";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
Binary file not shown.
@ -1 +0,0 @@
|
||||
<mxfile userAgent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36" version="8.5.0" editor="www.draw.io" type="device"><diagram id="a25c7ef0-4d2a-b856-88de-bc3ab2cd9c32" name="Page-1">5ZZNb6MwEIZ/DXewUwrXsE176SmHPU/sAayaODJOCfvr14D5Eo2EdpPdSPUF+x2PP553ZOHRpLi8ajjl74qj9IjPLx794RES+BtiP41Sd8oTiTsh04K7SaOwF7+wz3TqWXAsZxONUtKI01xk6nhEZmYaaK2q+bRUyfmuJ8hwIewZyKX6U3CTOzUI4zHwhiLL3dYRCbvAAdhHptX56PbzCE3b1oUL6NdyFy1z4KqaSPTFo4lWynS94pKgbNj22Lq83ZXocG6NR7MmgXYJnyDP2J+4PZepexbtbbCZ73t0W+XC4P4ErIlW1n2r5aaQdhTYbmm0+sBESaXbbOq3zUZSIeVE39mWJFbPJJSlW3yg0QyYKgRzy7pTojZ4uXrTYOBn6xJVgUbXdopLoH1tuZIM3bAa/SW+0/KJtZs+D1xNZcPSI1fbcWi/xhwuMB+sxVIBR/2XwKfIpiyn+Fa7wgGjlP1n4Dfg/bzgXdalwcJrdwyl3Wp7sOTDzAyXfQwH3GtxFwcCf6UF8Q0siK5bEHxjC+J/aEH85atTGjD42A7c8xki0UoHbvHu92tMLFD2NhLqR8Kdphiye+FeW/C3ePaDYIGbg4FHYs2fMOKb+7CmdG1p/wFsOxx/S9vY5N+fvvwG</diagram></mxfile>
|
@ -1,10 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
## OVA
|
||||
dtc -@ -I dts -O dtb -o fdt/barebox-state-efi.dtb fdt/barebox-state-efi.dts
|
||||
cp -f fdt/barebox-state-efi.dtb buildroot-external/board/ova/
|
||||
|
||||
## Raspberry
|
||||
dtc -@ -I dts -O dtb -o fdt/barebox-state-rpi.dtbo fdt/barebox-state-rpi.dtso
|
||||
cp -f fdt/barebox-state-rpi.dtbo buildroot-external/board/raspberrypi/barebox-env/data/
|
||||
dtc -@ -I dts -O dtb -o buildroot-external/misc/barebox-state-efi.dtb buildroot-external/misc/barebox-state-efi.dts
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user