diff options
author | Joel Stanley <joel@jms.id.au> | 2015-03-04 14:06:24 +1030 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2015-03-04 15:40:14 +1100 |
commit | 4d81acea02eb4e6179e80c9c7699df120591352a (patch) | |
tree | b4792ef1d56c1ae234ab6178db1cd7d263269b87 | |
parent | f11aeb6494ca6d555cfb26b51c012b82a9a6deef (diff) | |
download | skiboot-4d81acea02eb4e6179e80c9c7699df120591352a.zip skiboot-4d81acea02eb4e6179e80c9c7699df120591352a.tar.gz skiboot-4d81acea02eb4e6179e80c9c7699df120591352a.tar.bz2 |
core/flash: Rename KERNEL to BOOTKERNEL
BOOTKERNEL is now the name for the PNOR petition that will contain the
separate kernel, so that users do not confuse the bootloader kernel with
the final OS kernel.
Signed-off-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r-- | core/flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/flash.c b/core/flash.c index 187d7c2..3a06d1d 100644 --- a/core/flash.c +++ b/core/flash.c @@ -354,7 +354,7 @@ static struct { uint32_t subid; char name[PART_NAME_MAX+1]; } part_name_map[] = { - { RESOURCE_ID_KERNEL, RESOURCE_SUBID_NONE, "KERNEL" }, + { RESOURCE_ID_KERNEL, RESOURCE_SUBID_NONE, "BOOTKERNEL" }, { RESOURCE_ID_INITRAMFS,RESOURCE_SUBID_NONE, "ROOTFS" }, { RESOURCE_ID_CAPP, RESOURCE_SUBID_SUPPORTED, "CAPP" }, }; |