diff options
Diffstat (limited to 'recipes-bsp/u-boot/u-boot-ota/0001-Set-up-environment-for-OSTree-integration.patch')
-rw-r--r-- | recipes-bsp/u-boot/u-boot-ota/0001-Set-up-environment-for-OSTree-integration.patch | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/recipes-bsp/u-boot/u-boot-ota/0001-Set-up-environment-for-OSTree-integration.patch b/recipes-bsp/u-boot/u-boot-ota/0001-Set-up-environment-for-OSTree-integration.patch index c33d40c..186a2a2 100644 --- a/recipes-bsp/u-boot/u-boot-ota/0001-Set-up-environment-for-OSTree-integration.patch +++ b/recipes-bsp/u-boot/u-boot-ota/0001-Set-up-environment-for-OSTree-integration.patch | |||
@@ -1,36 +1,41 @@ | |||
1 | From 2b4d519bef51d9bfb646588aa5198f71022a867b Mon Sep 17 00:00:00 2001 | 1 | From ebb26338d0c2f436a86fd4d7cb8d723a90d6a369 Mon Sep 17 00:00:00 2001 |
2 | From: Anton Gerasimov <anton@advancedtelematic.com> | 2 | From: Anton Gerasimov <anton@advancedtelematic.com> |
3 | Date: Mon, 15 Aug 2016 15:54:20 +0200 | 3 | Date: Thu, 15 Sep 2016 17:52:41 +0200 |
4 | Subject: [PATCH] Set up environment for OSTree integration | 4 | Subject: [PATCH 1/2] Set up environment for OSTree integration |
5 | 5 | ||
6 | --- | 6 | --- |
7 | include/configs/qemu-x86.h | 15 +++++++++++++++ | 7 | include/configs/qemu-x86.h | 20 ++++++++++++++++++++ |
8 | 1 file changed, 15 insertions(+) | 8 | 1 file changed, 20 insertions(+) |
9 | 9 | ||
10 | diff --git a/include/configs/qemu-x86.h b/include/configs/qemu-x86.h | 10 | diff --git a/include/configs/qemu-x86.h b/include/configs/qemu-x86.h |
11 | index 476d37d..f49e2a5 100644 | 11 | index 78c296f..79df455 100644 |
12 | --- a/include/configs/qemu-x86.h | 12 | --- a/include/configs/qemu-x86.h |
13 | +++ b/include/configs/qemu-x86.h | 13 | +++ b/include/configs/qemu-x86.h |
14 | @@ -56,4 +56,19 @@ | 14 | @@ -74,4 +74,24 @@ |
15 | #undef CONFIG_ENV_IS_IN_SPI_FLASH | 15 | #undef CONFIG_ENV_IS_IN_SPI_FLASH |
16 | #define CONFIG_ENV_IS_NOWHERE | 16 | #define CONFIG_ENV_IS_NOWHERE |
17 | 17 | ||
18 | +#undef CONFIG_BOOTARGS | 18 | +#undef CONFIG_BOOTARGS |
19 | +#define CONFIG_BOOTARGS "root=/dev/hda2 console=ttyS0" | 19 | +#define CONFIG_BOOTARGS "root=/dev/hda2 console=ttyS0" |
20 | + | 20 | + |
21 | +#undef CONFIG_BOOTDELAY | ||
22 | +#define CONFIG_BOOTDELAY 3 | ||
23 | + | ||
21 | +#undef CONFIG_BOOTCOMMAND | 24 | +#undef CONFIG_BOOTCOMMAND |
22 | +#define CONFIG_BOOTCOMMAND "run loadenv;" \ | 25 | +#define CONFIG_BOOTCOMMAND "run loadenv;" \ |
23 | + "ext2load ide 0:1 $loadaddr $kernel_image;" \ | 26 | + "setenv bootargs $bootargs\" console=ttyS0 root=/dev/hda\";" \ |
24 | + "ext2load ide 0:1 $ramdiskaddr $ramdisk_image;" \ | 27 | + "ext2load ide 0 $loadaddr \"/boot\"$kernel_image;" \ |
28 | + "ext2load ide 0 $ramdiskaddr \"/boot\"$ramdisk_image;" \ | ||
25 | + "zboot $loadaddr - $ramdiskaddr $filesize" | 29 | + "zboot $loadaddr - $ramdiskaddr $filesize" |
26 | + | 30 | + |
27 | +#undef CONFIG_EXTRA_ENV_SETTINGS | 31 | +#undef CONFIG_EXTRA_ENV_SETTINGS |
28 | +#define CONFIG_EXTRA_ENV_SETTINGS "kernel_image=/bzImage\0" \ | 32 | +#define CONFIG_EXTRA_ENV_SETTINGS "kernel_image=/bzImage\0" \ |
29 | + "ramdisk_image=/initrd\0" \ | 33 | + "ramdisk_image=/initrd\0" \ |
30 | + "ramdiskaddr=0x4000000\0" \ | 34 | + "ramdiskaddr=0x4000000\0" \ |
31 | + "loadenv=if ext2ls ide 0:1 /loader.0/uEnv.txt; then ext2load ide 0:1 $loadaddr uEnv.txt; env import -t $loadaddr $filesize; fi;" | 35 | + "bootdelay=3\0" \ |
36 | + "loadenv=if ext2load ide 0 $loadaddr /boot/loader/uEnv.txt; then env import -t $loadaddr $filesize; fi;" | ||
32 | + | 37 | + |
33 | #endif /* __CONFIG_H */ | 38 | #endif /* __CONFIG_H */ |
34 | -- | 39 | -- |
35 | 2.8.3 | 40 | 2.9.3 |
36 | 41 | ||