Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 946195 Details for
Bug 1088933
update grubby to support device tree options for arm
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
cleanup the dtb option handling
0003-cleanup-dtb-handling-to-work-in-the-supported-usecas.patch (text/plain), 1.98 KB, created by
Dennis Gilmore
on 2014-10-13 01:49:34 UTC
(
hide
)
Description:
cleanup the dtb option handling
Filename:
MIME Type:
Creator:
Dennis Gilmore
Created:
2014-10-13 01:49:34 UTC
Size:
1.98 KB
patch
obsolete
>From 595f8d2d3681d684dbb12eff32bf1a68636db977 Mon Sep 17 00:00:00 2001 >From: Dennis Gilmore <dennis@ausil.us> >Date: Thu, 9 Oct 2014 01:42:03 -0500 >Subject: [PATCH 3/3] cleanup dtb handling to work in the supported usecases > >add SHIPSDTB variable in the uboot defaults file that needs to be set to yes for >platforms like the calxeda highbank that ship a dtb in u-boot that we want to use. >if the user defines a dtbfile in /etc/sysconfig/uboot update the extlinux.conf >with an fdt entry otherwise update a fdtdir entry unless SHIPSDTB is set to yes. >--- > new-kernel-pkg | 12 +++++++----- > uboot | 5 +++++ > 2 files changed, 12 insertions(+), 5 deletions(-) > >diff --git a/new-kernel-pkg b/new-kernel-pkg >index 8d55abf..e02f65c 100755 >--- a/new-kernel-pkg >+++ b/new-kernel-pkg >@@ -801,14 +801,16 @@ fi > [ -n "$verbose" ] && echo "initrdfile is $initrdfile" > > if [[ ${ARCH} =~ armv[5|7].*l ]]; then >- if [ -d "$bootPrefix/dtb-$version/" ]; then >- devtreedir="$bootPrefix/dtb-$version/" >- if [ -n "$dtbfile" -a -f "$devtreedir/$dtbfile" ]; then >- devtreefile="$devtreedir/$dtbfile" >+ if [ -z "$SHIPSDTB" -o "$SHIPSDTB" != "yes" ]; then >+ if [ -n "$dtbfile" -a -f "$bootPrefix/dtb-$version/$dtbfile" ]; then >+ devtreefile="$bootPrefix/dtb-$version/$dtbfile" >+ [ -n "$verbose" ] && echo "devtreefile is $devtreefile" >+ elif [ -d "$bootPrefix/dtb-$version/" ]; then >+ devtreedir="$bootPrefix/dtb-$version/" >+ [ -n "$verbose" ] && echo "devtreedir is $devtreedir" > fi > fi > fi >-[ -n "$verbose" ] && echo "devtreedir is $devtreedir" > > # add dracut i18n, keyboard and plymouth kernel args if requested > if [ -n "$dracut" -o -n "$adddracutargs" ]; then >diff --git a/uboot b/uboot >index aa663ad..07d8671 100644 >--- a/uboot >+++ b/uboot >@@ -36,3 +36,8 @@ > # default initrd uInitrd file name > #UBOOT_UINITRD=uInitrd > >+# defualt for platform shipping an onboard dtb. >+#SHIPSDTB=no >+ >+# option to tell new-kernel-pkg a specific dtb file to load in extlinux.conf >+#dtbfile=foo.dtb >-- >2.1.0 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1088933
:
888179
|
889181
|
913961
|
913962
|
946192
|
946193
| 946195