diff options
author | Han Gao <gaohan@iscas.ac.cn> | 2024-01-31 16:39:02 +0800 |
---|---|---|
committer | Han Gao/Revy/Rabenda <rabenda.cn@gmail.com> | 2024-01-31 20:52:36 +0800 |
commit | 69d7d3cda074677f79899335b74809e7bc01d4ed (patch) | |
tree | cba9458f8ef4427fc9b49012b6d8d0977d1f95db | |
parent | 4529d8d50fe090fd87f5edc847bfb9ea1ea66071 (diff) |
feat: add format swap partition for resume20240131
Signed-off-by: Han Gao <gaohan@iscas.ac.cn>
-rw-r--r-- | include/configs/light-c910.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/configs/light-c910.h b/include/configs/light-c910.h index aa805006..29e970eb 100644 --- a/include/configs/light-c910.h +++ b/include/configs/light-c910.h @@ -155,7 +155,8 @@ "mmcbootpart=2\0" \ "boot_conf_file=/extlinux/extlinux.conf\0" \ "uuid_rootfsA=80a5a8e9-c744-491a-93c1-4f4194fd690a\0" \ - "partitions=name=table,size=2031KB;name=boot,size=500MiB,type=boot;name=root,size=-,type=linux,uuid=${uuid_rootfsA}\0" \ + "uuid_swap=5ebcaaf0-e098-43b9-beef-1f8deedd135e\0" \ + "partitions=name=table,size=2031KB;name=boot,size=500MiB,type=boot;name=swap,size=4096MiB,type=swap,uuid=${uuid_swap};name=root,size=-,type=linux,uuid=${uuid_rootfsA}\0" \ "gpt_partition=gpt write mmc ${mmcdev} $partitions\0" \ "load_aon=load mmc ${mmcdev}:${mmcbootpart} $fwaddr light_aon_fpga.bin;cp.b $fwaddr $aon_ram_addr $filesize\0" \ "load_c906_audio=load mmc ${mmcdev}:${mmcbootpart} $fwaddr light_c906_audio.bin;cp.b $fwaddr $audio_ram_addr $filesize\0" \ |