-
Notifications
You must be signed in to change notification settings - Fork 449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update kernel.md and flashing.md #2044
base: master
Are you sure you want to change the base?
Conversation
TM1 was deprecated since Tizen 8.0. If someone wants to use TM1, it needs to use a lower version than Tizen 8.0. Signed-off-by: Jaehoon Chung <[email protected]>
Can one of the admins verify this patch? |
1 similar comment
Can one of the admins verify this patch? |
Please checkout the webpage https://docs1.stg.tizen.org/staging/2044 |
``` | ||
/* To build u-boot */ | ||
$ make CROSS_COMPILE=/usr/bin/arm-linux-gnu- all | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
as like below uboot.env part, "CROSS_COMPILE=arm-linux-gnu-" seems fine.
docs/platform/porting/kernel.md
Outdated
``` | ||
$ sudo ls | ||
$ scripts/mkmodimg.sh | ||
5. Created kernel, module and dtb file under output directory. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/file/files/
docs/platform/porting/kernel.md
Outdated
@@ -54,7 +97,7 @@ This section provides a brief overview of the typical booting sequence, starting | |||
|
|||
![Tizen bootup sequence](media/800px-boot-1.png) | |||
|
|||
The Tizen bootup process is the same as any other [Linux](https://wiki.tizen.org/Linux) kernel. Make sure that the correct machine ID and the boot arguments are passed from the boot loader. | |||
The Tizen bootup process is the same as any other Linux kernel. Make sure that the correct machine ID and the boot arguments are passed from the boot loader. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/is the same as/is same as/
docs/platform/porting/kernel.md
Outdated
``` | ||
|
||
### Kernel | ||
|
||
The kernel is the operating system that drives the platform. In this case, the kernel refers to the open-source [Linux](https://wiki.tizen.org/Linux) kernel that is customized for the Tizen platform. The following section gives a brief overview of the Tizen kernel setup, configuration, and the build procedure for building a Linux kernel for your Tizen platform. The output of the kernel binary is a uImage that is suitable only for a `u-boot` boot loader. If you have chosen a secure booting configuration in your boot loader, this uImage must be compatible with your boot loader. | ||
The kernel is the operating system that drives the platform. In this case, the kernel refers to the open-source Linux kernel that is customized for the Tizen platform. The following section gives a brief overview of the Tizen kernel setup, configuration, and the build procedure for building a Linux kernel for your Tizen platform. The output of the kernel binary is a uImage that is suitable only for a `u-boot` boot loader. If you have chosen a secure booting configuration in your boot loader, this uImage must be compatible with your boot loader. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
as far as I know, in Tizen RPI4, uImage is not used. so you can just skip to explain about "uImage" .
Referenc target is changed from TM1 to RPi4. - Add U-boot Build guidance - Change a kernel build guidance from TM1 to RPi4 - Remove unlinked url (wiki.tizen.org) Signed-off-by: Jaehoon Chung <[email protected]>
Change Description
TM1 was deprecated since Tizen8.0.
Its guidance is not valid. To provide a correct guidance, Update the flashing.md and kernel.md.