diff --git a/0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch b/0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch index cc6339d..3354f83 100644 --- a/0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch +++ b/0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch @@ -1,7 +1,7 @@ -From 94393e83682d6dfd5b8572e869f03d27ef751fae Mon Sep 17 00:00:00 2001 +From e115b5cafe638c7b4d1bc66d0516100ff40437db Mon Sep 17 00:00:00 2001 From: Alexander Graf Date: Wed, 13 Apr 2016 13:44:29 +0200 -Subject: [PATCH 01/17] XXX openSUSE XXX: Load dtb from partition 2 +Subject: [PATCH 1/3] XXX openSUSE XXX: Load dtb from partition 2 Upstream U-Boot loads the device tree from the EFI partition. This is mostly because upstream we don't know which partition really holds the @@ -16,26 +16,27 @@ Signed-off-by: Alexander Graf 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h -index ad9045e..50a8371 100644 +index 7f67344..a62fb63 100644 --- a/include/config_distro_bootcmd.h +++ b/include/config_distro_bootcmd.h -@@ -106,15 +106,15 @@ - "bootefi ${kernel_addr_r}\0" \ +@@ -125,16 +125,16 @@ + "fi\0" \ \ "load_efi_dtb=" \ - "load ${devtype} ${devnum}:${distro_bootpart} " \ -+ "load ${devtype} ${devnum}:2 " \ - "${fdt_addr_r} ${prefix}${fdtfile}; " \ - "fdt addr ${fdt_addr_r}\0" \ ++ "load ${devtype} ${devnum}:2 " \ + "${fdt_addr_r} ${prefix}${efi_fdtfile}\0" \ \ - "efi_dtb_prefixes=/ /dtb/ /dtb/current/\0" \ + "efi_dtb_prefixes=/ /dtb/ /dtb/current/ /boot/ /boot/dtb/ /boot/dtb/current/\0" \ "scan_dev_for_efi=" \ + "setenv efi_fdtfile ${fdtfile}; " \ + BOOTENV_EFI_SET_FDTFILE_FALLBACK \ "for prefix in ${efi_dtb_prefixes}; do " \ "if test -e ${devtype} " \ - "${devnum}:${distro_bootpart} " \ -+ "${devnum}:2 " \ - "${prefix}${fdtfile}; then " \ ++ "${devnum}:2 " \ + "${prefix}${efi_fdtfile}; then " \ "run load_efi_dtb; " \ "fi;" \ -- diff --git a/0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch b/0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch index 3126c74..20d7b9c 100644 --- a/0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch +++ b/0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch @@ -1,7 +1,7 @@ -From 46d71bc54f49953fb9cb16f5a068bd840e76be84 Mon Sep 17 00:00:00 2001 +From cd390d22b9858748a69306917e387b416556dfed Mon Sep 17 00:00:00 2001 From: Alexander Graf Date: Tue, 1 Mar 2016 10:05:10 +0100 -Subject: [PATCH 02/17] XXX openSUSE XXX: omap3: Move to distro bootcmd +Subject: [PATCH 2/3] XXX openSUSE XXX: omap3: Move to distro bootcmd This is a half-assed conversion of the beagle3 default bootcmd to the distro framework. Only MMC boot works for now, but it gets @@ -13,10 +13,10 @@ Signed-off-by: Alexander Graf 1 file changed, 13 insertions(+), 32 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h -index 2112d9f..4d4e6eb 100644 +index 4dbe2b6..1979d84 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h -@@ -125,9 +125,12 @@ +@@ -113,9 +113,12 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "loadaddr=0x80200000\0" \ @@ -30,7 +30,7 @@ index 2112d9f..4d4e6eb 100644 "usbtty=cdc_acm\0" \ "bootfile=uImage\0" \ "ramdisk=ramdisk.gz\0" \ -@@ -222,39 +225,17 @@ +@@ -210,39 +213,17 @@ "userbutton=if gpio input 173; then run userbutton_xm; " \ "else run userbutton_nonxm; fi;\0" \ "userbutton_xm=gpio input 4;\0" \ diff --git a/0003-exynos-Set-CNTFRQ.patch b/0003-exynos-Set-CNTFRQ.patch index db5c4c0..39bbe6b 100644 --- a/0003-exynos-Set-CNTFRQ.patch +++ b/0003-exynos-Set-CNTFRQ.patch @@ -1,7 +1,7 @@ -From 7a449b85b2230f7890cb172241dfde06b9006d7b Mon Sep 17 00:00:00 2001 +From a5026e4f60cc43cc9d5e685643f306140b53ba03 Mon Sep 17 00:00:00 2001 From: Alexander Graf Date: Mon, 1 Feb 2016 21:41:06 +0100 -Subject: [PATCH 03/17] exynos: Set CNTFRQ +Subject: [PATCH 3/3] exynos: Set CNTFRQ Commit 73a1cb27 moved the check whether we should set the architected timer frequency from CONFIG_SYS_CLK_FREQ to CONFIG_TIMER_CLK_FREQ, but @@ -23,10 +23,10 @@ v1 -> v2: 1 file changed, 1 insertion(+) diff --git a/include/configs/exynos-common.h b/include/configs/exynos-common.h -index 852829c..b61f889 100644 +index f97f03c..98474d3 100644 --- a/include/configs/exynos-common.h +++ b/include/configs/exynos-common.h -@@ -31,6 +31,7 @@ +@@ -29,6 +29,7 @@ /* input clock of PLL: 24MHz input clock */ #define CONFIG_SYS_CLK_FREQ 24000000 diff --git a/0004-iso-Make-little-endian-and-64bit-safe.patch b/0004-iso-Make-little-endian-and-64bit-safe.patch deleted file mode 100644 index bee203d..0000000 --- a/0004-iso-Make-little-endian-and-64bit-safe.patch +++ /dev/null @@ -1,124 +0,0 @@ -From f8530cbc9a07372913a8f5bbae982e540fb76077 Mon Sep 17 00:00:00 2001 -From: Alexander Graf -Date: Mon, 11 Apr 2016 13:18:12 +0200 -Subject: [PATCH 04/17] iso: Make little endian and 64bit safe - -The iso partition table implementation has a few endian and 64bit -problems. Clean it up a bit to become endian and bitness safe. - -Signed-off-by: Alexander Graf ---- - disk/part_iso.c | 10 ++++------ - disk/part_iso.h | 40 ++++++++++++++++++++-------------------- - 2 files changed, 24 insertions(+), 26 deletions(-) - -diff --git a/disk/part_iso.c b/disk/part_iso.c -index 2114faf..b7a5381 100644 ---- a/disk/part_iso.c -+++ b/disk/part_iso.c -@@ -58,11 +58,9 @@ int part_get_info_iso_verb(struct blk_desc *dev_desc, int part_num, - ppr->stand_ident, dev_desc->devnum, part_num); - return (-1); - } -- lastsect= ((ppr->firstsek_LEpathtab1_LE & 0x000000ff)<<24) + -- ((ppr->firstsek_LEpathtab1_LE & 0x0000ff00)<< 8) + -- ((ppr->firstsek_LEpathtab1_LE & 0x00ff0000)>> 8) + -- ((ppr->firstsek_LEpathtab1_LE & 0xff000000)>>24) ; -- info->blksz=ppr->secsize_BE; /* assuming same block size for all entries */ -+ lastsect = le32_to_cpu(ppr->firstsek_LEpathtab1_LE); -+ /* assuming same block size for all entries */ -+ info->blksz = be16_to_cpu(ppr->secsize_BE); - PRINTF(" Lastsect:%08lx\n",lastsect); - for(i=blkaddr;i>8); -+ chksum += le16_to_cpu(chksumbuf[i]); - if(chksum!=0) { - if(verb) - printf("** Checksum Error in booting catalog validation entry on %d:%d **\n", -diff --git a/disk/part_iso.h b/disk/part_iso.h -index dace0f8..045784f 100644 ---- a/disk/part_iso.h -+++ b/disk/part_iso.h -@@ -29,8 +29,8 @@ typedef struct iso_pri_rec { - char sysid[32]; /* system Identifier */ - char volid[32]; /* volume Identifier */ - unsigned char zeros1[8]; /* unused */ -- unsigned long volsiz_LE; /* volume size Little Endian */ -- unsigned long volsiz_BE; /* volume size Big Endian */ -+ unsigned int volsiz_LE; /* volume size Little Endian */ -+ unsigned int volsiz_BE; /* volume size Big Endian */ - unsigned char zeros2[32]; /* unused */ - unsigned short setsize_LE; /* volume set size LE */ - unsigned short setsize_BE; /* volume set size BE */ -@@ -38,12 +38,12 @@ typedef struct iso_pri_rec { - unsigned short seqnum_BE; /* volume sequence number BE */ - unsigned short secsize_LE; /* sector size LE */ - unsigned short secsize_BE; /* sector size BE */ -- unsigned long pathtablen_LE;/* Path Table size LE */ -- unsigned long pathtablen_BE;/* Path Table size BE */ -- unsigned long firstsek_LEpathtab1_LE; /* location of first occurrence of little endian type path table */ -- unsigned long firstsek_LEpathtab2_LE; /* location of optional occurrence of little endian type path table */ -- unsigned long firstsek_BEpathtab1_BE; /* location of first occurrence of big endian type path table */ -- unsigned long firstsek_BEpathtab2_BE; /* location of optional occurrence of big endian type path table */ -+ unsigned int pathtablen_LE;/* Path Table size LE */ -+ unsigned int pathtablen_BE;/* Path Table size BE */ -+ unsigned int firstsek_LEpathtab1_LE; /* location of first occurrence of little endian type path table */ -+ unsigned int firstsek_LEpathtab2_LE; /* location of optional occurrence of little endian type path table */ -+ unsigned int firstsek_BEpathtab1_BE; /* location of first occurrence of big endian type path table */ -+ unsigned int firstsek_BEpathtab2_BE; /* location of optional occurrence of big endian type path table */ - unsigned char rootdir[34]; /* directory record for root dir */ - char volsetid[128];/* Volume set identifier */ - char pubid[128]; /* Publisher identifier */ -@@ -67,8 +67,8 @@ typedef struct iso_sup_rec { - char sysid[32]; /* system Identifier */ - char volid[32]; /* volume Identifier */ - unsigned char zeros1[8]; /* unused */ -- unsigned long volsiz_LE; /* volume size Little Endian */ -- unsigned long volsiz_BE; /* volume size Big Endian */ -+ unsigned int volsiz_LE; /* volume size Little Endian */ -+ unsigned int volsiz_BE; /* volume size Big Endian */ - unsigned char escapeseq[32];/* Escape sequences */ - unsigned short setsize_LE; /* volume set size LE */ - unsigned short setsize_BE; /* volume set size BE */ -@@ -76,12 +76,12 @@ typedef struct iso_sup_rec { - unsigned short seqnum_BE; /* volume sequence number BE */ - unsigned short secsize_LE; /* sector size LE */ - unsigned short secsize_BE; /* sector size BE */ -- unsigned long pathtablen_LE;/* Path Table size LE */ -- unsigned long pathtablen_BE;/* Path Table size BE */ -- unsigned long firstsek_LEpathtab1_LE; /* location of first occurrence of little endian type path table */ -- unsigned long firstsek_LEpathtab2_LE; /* location of optional occurrence of little endian type path table */ -- unsigned long firstsek_BEpathtab1_BE; /* location of first occurrence of big endian type path table */ -- unsigned long firstsek_BEpathtab2_BE; /* location of optional occurrence of big endian type path table */ -+ unsigned int pathtablen_LE;/* Path Table size LE */ -+ unsigned int pathtablen_BE;/* Path Table size BE */ -+ unsigned int firstsek_LEpathtab1_LE; /* location of first occurrence of little endian type path table */ -+ unsigned int firstsek_LEpathtab2_LE; /* location of optional occurrence of little endian type path table */ -+ unsigned int firstsek_BEpathtab1_BE; /* location of first occurrence of big endian type path table */ -+ unsigned int firstsek_BEpathtab2_BE; /* location of optional occurrence of big endian type path table */ - unsigned char rootdir[34]; /* directory record for root dir */ - char volsetid[128];/* Volume set identifier */ - char pubid[128]; /* Publisher identifier */ -@@ -104,10 +104,10 @@ typedef struct iso_part_rec { - unsigned char unused; - char sysid[32]; /* system Identifier */ - char volid[32]; /* volume partition Identifier */ -- unsigned long partloc_LE; /* volume partition location LE */ -- unsigned long partloc_BE; /* volume partition location BE */ -- unsigned long partsiz_LE; /* volume partition size LE */ -- unsigned long partsiz_BE; /* volume partition size BE */ -+ unsigned int partloc_LE; /* volume partition location LE */ -+ unsigned int partloc_BE; /* volume partition location BE */ -+ unsigned int partsiz_LE; /* volume partition size LE */ -+ unsigned int partsiz_BE; /* volume partition size BE */ - }iso_part_rec_t; - - --- -1.8.5.6 - diff --git a/0005-iso-Start-with-partition-1.patch b/0005-iso-Start-with-partition-1.patch deleted file mode 100644 index 8a8705e..0000000 --- a/0005-iso-Start-with-partition-1.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 88a935242ace6288ffc4c03e58db7666d2ac79d6 Mon Sep 17 00:00:00 2001 -From: Alexander Graf -Date: Mon, 11 Apr 2016 13:19:33 +0200 -Subject: [PATCH 05/17] iso: Start with partition 1 - -The generic partition code treats partition 0 as "whole disk". So -we should start with partition 1 as the first partition in the iso -partition table. - -Signed-off-by: Alexander Graf ---- - disk/part_iso.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/disk/part_iso.c b/disk/part_iso.c -index b7a5381..5adb349 100644 ---- a/disk/part_iso.c -+++ b/disk/part_iso.c -@@ -115,7 +115,7 @@ int part_get_info_iso_verb(struct blk_desc *dev_desc, int part_num, - } - #endif - /* the validation entry seems to be ok, now search the "partition" */ -- entry_num=0; -+ entry_num=1; - offset=0x20; - strcpy((char *)info->type, "U-Boot"); - switch(dev_desc->if_type) { -@@ -225,7 +225,7 @@ static int part_test_iso(struct blk_desc *dev_desc) - { - disk_partition_t info; - -- return part_get_info_iso_verb(dev_desc, 0, &info, 0); -+ return part_get_info_iso_verb(dev_desc, 1, &info, 1); - } - - U_BOOT_PART_TYPE(iso) = { --- -1.8.5.6 - diff --git a/0006-iso-Allow-512-byte-sector-size.patch b/0006-iso-Allow-512-byte-sector-size.patch deleted file mode 100644 index 9ed4e54..0000000 --- a/0006-iso-Allow-512-byte-sector-size.patch +++ /dev/null @@ -1,99 +0,0 @@ -From eddc5cd8d3ac7f0d2e432449fd5f99c6cd6ba2f4 Mon Sep 17 00:00:00 2001 -From: Alexander Graf -Date: Mon, 11 Apr 2016 13:22:09 +0200 -Subject: [PATCH 06/17] iso: Allow 512 byte sector size - -Real CD-ROMs are pretty obsolete these days. Usually people still keep -iso files around, but just put them on USB sticks or SD cards and expect -them to "just work". - -To support this use case with El Torito images, add support for 512 byte -sector size to the iso parsing code. - -Signed-off-by: Alexander Graf ---- - disk/part_iso.c | 36 +++++++++++++++++++++++++++++++----- - 1 file changed, 31 insertions(+), 5 deletions(-) - -diff --git a/disk/part_iso.c b/disk/part_iso.c -index 5adb349..9f5c50c 100644 ---- a/disk/part_iso.c -+++ b/disk/part_iso.c -@@ -26,6 +26,25 @@ - - static unsigned char tmpbuf[CD_SECTSIZE]; - -+unsigned long iso_dread(struct blk_desc *block_dev, lbaint_t start, -+ lbaint_t blkcnt, void *buffer) -+{ -+ unsigned long ret; -+ -+ if (block_dev->blksz == 512) { -+ /* Convert from 2048 to 512 sector size */ -+ start *= 4; -+ blkcnt *= 4; -+ } -+ -+ ret = blk_dread(block_dev, start, blkcnt, buffer); -+ -+ if (block_dev->blksz == 512) -+ ret /= 4; -+ -+ return ret; -+} -+ - /* only boot records will be listed as valid partitions */ - int part_get_info_iso_verb(struct blk_desc *dev_desc, int part_num, - disk_partition_t *info, int verb) -@@ -39,12 +58,12 @@ int part_get_info_iso_verb(struct blk_desc *dev_desc, int part_num, - iso_val_entry_t *pve = (iso_val_entry_t *)tmpbuf; - iso_init_def_entry_t *pide; - -- if (dev_desc->blksz != CD_SECTSIZE) -+ if ((dev_desc->blksz != CD_SECTSIZE) && (dev_desc->blksz != 512)) - return -1; - - /* the first sector (sector 0x10) must be a primary volume desc */ - blkaddr=PVD_OFFSET; -- if (blk_dread(dev_desc, PVD_OFFSET, 1, (ulong *)tmpbuf) != 1) -+ if (iso_dread(dev_desc, PVD_OFFSET, 1, (ulong *)tmpbuf) != 1) - return -1; - if(ppr->desctype!=0x01) { - if(verb) -@@ -64,7 +83,7 @@ int part_get_info_iso_verb(struct blk_desc *dev_desc, int part_num, - PRINTF(" Lastsect:%08lx\n",lastsect); - for(i=blkaddr;idesctype==0x00) - break; /* boot entry found */ -@@ -84,7 +103,7 @@ int part_get_info_iso_verb(struct blk_desc *dev_desc, int part_num, - } - bootaddr = get_unaligned_le32(pbr->pointer); - PRINTF(" Boot Entry at: %08lX\n",bootaddr); -- if (blk_dread(dev_desc, bootaddr, 1, (ulong *)tmpbuf) != 1) { -+ if (iso_dread(dev_desc, bootaddr, 1, (ulong *)tmpbuf) != 1) { - if(verb) - printf ("** Can't read Boot Entry at %lX on %d:%d **\n", - bootaddr, dev_desc->devnum, part_num); -@@ -192,7 +211,14 @@ found: - } - newblkaddr = get_unaligned_le32(pide->rel_block_addr); - info->start=newblkaddr; -- PRINTF(" part %d found @ %lx size %lx\n",part_num,newblkaddr,info->size); -+ -+ if (dev_desc->blksz == 512) { -+ info->size *= 4; -+ info->start *= 4; -+ info->blksz = 512; -+ } -+ -+ PRINTF(" part %d found @ %lx size %lx\n",part_num,info->start,info->size); - return 0; - } - --- -1.8.5.6 - diff --git a/0007-efi_loader-Split-drive-add-into-function.patch b/0007-efi_loader-Split-drive-add-into-function.patch deleted file mode 100644 index 229472f..0000000 --- a/0007-efi_loader-Split-drive-add-into-function.patch +++ /dev/null @@ -1,128 +0,0 @@ -From 256d34d8cbff128c98346220543f47285da015be Mon Sep 17 00:00:00 2001 -From: Alexander Graf -Date: Mon, 11 Apr 2016 14:13:34 +0200 -Subject: [PATCH 07/17] efi_loader: Split drive add into function - -The snippet of code to add a drive to our drive list needs to -get called from 2 places in the future. Split it into a separate -function. - -Signed-off-by: Alexander Graf ---- - lib/efi_loader/efi_disk.c | 84 ++++++++++++++++++++++++++--------------------- - 1 file changed, 47 insertions(+), 37 deletions(-) - -diff --git a/lib/efi_loader/efi_disk.c b/lib/efi_loader/efi_disk.c -index aaff947..e30e728 100644 ---- a/lib/efi_loader/efi_disk.c -+++ b/lib/efi_loader/efi_disk.c -@@ -138,6 +138,52 @@ static const struct efi_block_io block_io_disk_template = { - .flush_blocks = &efi_disk_flush_blocks, - }; - -+static void efi_disk_add_dev(char *name, -+ const struct block_drvr *cur_drvr, -+ const struct blk_desc *desc, -+ int dev_index, -+ lbaint_t offset) -+{ -+ struct efi_disk_obj *diskobj; -+ struct efi_device_path_file_path *dp; -+ int objlen = sizeof(*diskobj) + (sizeof(*dp) * 2); -+ -+ diskobj = calloc(1, objlen); -+ -+ /* Fill in object data */ -+ diskobj->parent.protocols[0].guid = &efi_block_io_guid; -+ diskobj->parent.protocols[0].open = efi_disk_open_block; -+ diskobj->parent.protocols[1].guid = &efi_guid_device_path; -+ diskobj->parent.protocols[1].open = efi_disk_open_dp; -+ diskobj->parent.handle = diskobj; -+ diskobj->ops = block_io_disk_template; -+ diskobj->ifname = cur_drvr->name; -+ diskobj->dev_index = dev_index; -+ -+ /* Fill in EFI IO Media info (for read/write callbacks) */ -+ diskobj->media.removable_media = desc->removable; -+ diskobj->media.media_present = 1; -+ diskobj->media.block_size = desc->blksz; -+ diskobj->media.io_align = desc->blksz; -+ diskobj->media.last_block = desc->lba; -+ diskobj->ops.media = &diskobj->media; -+ -+ /* Fill in device path */ -+ dp = (void*)&diskobj[1]; -+ diskobj->dp = dp; -+ dp[0].dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE; -+ dp[0].dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH; -+ dp[0].dp.length = sizeof(*dp); -+ ascii2unicode(dp[0].str, name); -+ -+ dp[1].dp.type = DEVICE_PATH_TYPE_END; -+ dp[1].dp.sub_type = DEVICE_PATH_SUB_TYPE_END; -+ dp[1].dp.length = sizeof(*dp); -+ -+ /* Hook up to the device list */ -+ list_add_tail(&diskobj->parent.link, &efi_obj_list); -+} -+ - /* - * U-Boot doesn't have a list of all online disk devices. So when running our - * EFI payload, we scan through all of the potentially available ones and -@@ -156,9 +202,6 @@ int efi_disk_register(void) - printf("Scanning disks on %s...\n", cur_drvr->name); - for (i = 0; i < 4; i++) { - struct blk_desc *desc; -- struct efi_disk_obj *diskobj; -- struct efi_device_path_file_path *dp; -- int objlen = sizeof(*diskobj) + (sizeof(*dp) * 2); - char devname[16] = { 0 }; /* dp->str is u16[16] long */ - - desc = blk_get_dev(cur_drvr->name, i); -@@ -167,42 +210,9 @@ int efi_disk_register(void) - if (desc->type == DEV_TYPE_UNKNOWN) - continue; - -- diskobj = calloc(1, objlen); -- -- /* Fill in object data */ -- diskobj->parent.protocols[0].guid = &efi_block_io_guid; -- diskobj->parent.protocols[0].open = efi_disk_open_block; -- diskobj->parent.protocols[1].guid = &efi_guid_device_path; -- diskobj->parent.protocols[1].open = efi_disk_open_dp; -- diskobj->parent.handle = diskobj; -- diskobj->ops = block_io_disk_template; -- diskobj->ifname = cur_drvr->name; -- diskobj->dev_index = i; -- -- /* Fill in EFI IO Media info (for read/write callbacks) */ -- diskobj->media.removable_media = desc->removable; -- diskobj->media.media_present = 1; -- diskobj->media.block_size = desc->blksz; -- diskobj->media.io_align = desc->blksz; -- diskobj->media.last_block = desc->lba; -- diskobj->ops.media = &diskobj->media; -- -- /* Fill in device path */ -- dp = (void*)&diskobj[1]; -- diskobj->dp = dp; -- dp[0].dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE; -- dp[0].dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH; -- dp[0].dp.length = sizeof(*dp); - snprintf(devname, sizeof(devname), "%s%d", - cur_drvr->name, i); -- ascii2unicode(dp[0].str, devname); -- -- dp[1].dp.type = DEVICE_PATH_TYPE_END; -- dp[1].dp.sub_type = DEVICE_PATH_SUB_TYPE_END; -- dp[1].dp.length = sizeof(*dp); -- -- /* Hook up to the device list */ -- list_add_tail(&diskobj->parent.link, &efi_obj_list); -+ efi_disk_add_dev(devname, cur_drvr, desc, i, 0); - disks++; - } - } --- -1.8.5.6 - diff --git a/0008-efi_loader-Add-el-torito-support.patch b/0008-efi_loader-Add-el-torito-support.patch deleted file mode 100644 index 0c95330..0000000 --- a/0008-efi_loader-Add-el-torito-support.patch +++ /dev/null @@ -1,125 +0,0 @@ -From 29a71f2eaaf05107085c11d09eab285fe80a0806 Mon Sep 17 00:00:00 2001 -From: Alexander Graf -Date: Mon, 11 Apr 2016 15:14:49 +0200 -Subject: [PATCH 08/17] efi_loader: Add el torito support - -When loading an el torito image, uEFI exposes said image as a raw -block device to the payload. - -Let's do the same by creating new block devices with added offsets for -the respective el torito partitions. - -Signed-off-by: Alexander Graf ---- - cmd/bootefi.c | 14 ++++++++++++++ - lib/efi_loader/efi_disk.c | 35 +++++++++++++++++++++++++++++++++++ - 2 files changed, 49 insertions(+) - -diff --git a/cmd/bootefi.c b/cmd/bootefi.c -index 3add632..0d09aa1 100644 ---- a/cmd/bootefi.c -+++ b/cmd/bootefi.c -@@ -194,12 +194,26 @@ U_BOOT_CMD( - - void efi_set_bootdev(const char *dev, const char *devnr) - { -+ __maybe_unused struct blk_desc *desc; - char devname[16] = { 0 }; /* dp->str is u16[16] long */ - char *colon; - - /* Assemble the condensed device name we use in efi_disk.c */ - snprintf(devname, sizeof(devname), "%s%s", dev, devnr); - colon = strchr(devname, ':'); -+ -+#ifdef CONFIG_ISO_PARTITION -+ /* For ISOs we create partition block devices */ -+ desc = blk_get_dev(dev, simple_strtol(devnr, NULL, 10)); -+ if (desc && (desc->type != DEV_TYPE_UNKNOWN) && -+ (desc->part_type == PART_TYPE_ISO)) { -+ if (!colon) -+ snprintf(devname, sizeof(devname), "%s%s:1", dev, -+ devnr); -+ colon = NULL; -+ } -+#endif -+ - if (colon) - *colon = '\0'; - -diff --git a/lib/efi_loader/efi_disk.c b/lib/efi_loader/efi_disk.c -index e30e728..b3d56a8 100644 ---- a/lib/efi_loader/efi_disk.c -+++ b/lib/efi_loader/efi_disk.c -@@ -27,6 +27,8 @@ struct efi_disk_obj { - struct efi_block_io_media media; - /* EFI device path to this block device */ - struct efi_device_path_file_path *dp; -+ /* Offset into disk for simple partitions */ -+ lbaint_t offset; - }; - - static efi_status_t efi_disk_open_block(void *handle, efi_guid_t *protocol, -@@ -81,6 +83,7 @@ static efi_status_t EFIAPI efi_disk_rw_blocks(struct efi_block_io *this, - return EFI_EXIT(EFI_DEVICE_ERROR); - blksz = desc->blksz; - blocks = buffer_size / blksz; -+ lba += diskobj->offset; - - #ifdef DEBUG_EFI - printf("EFI: %s:%d blocks=%x lba=%"PRIx64" blksz=%x dir=%d\n", __func__, -@@ -159,6 +162,7 @@ static void efi_disk_add_dev(char *name, - diskobj->ops = block_io_disk_template; - diskobj->ifname = cur_drvr->name; - diskobj->dev_index = dev_index; -+ diskobj->offset = offset; - - /* Fill in EFI IO Media info (for read/write callbacks) */ - diskobj->media.removable_media = desc->removable; -@@ -184,6 +188,31 @@ static void efi_disk_add_dev(char *name, - list_add_tail(&diskobj->parent.link, &efi_obj_list); - } - -+static int efi_disk_create_eltorito(struct blk_desc *desc, -+ const struct block_drvr *cur_drvr, -+ int diskid) -+{ -+ int disks = 0; -+#ifdef CONFIG_ISO_PARTITION -+ char devname[16] = { 0 }; /* dp->str is u16[16] long */ -+ disk_partition_t info; -+ int part = 1; -+ -+ if (desc->part_type != PART_TYPE_ISO) -+ return 0; -+ -+ while (!part_get_info(desc, part, &info)) { -+ snprintf(devname, sizeof(devname), "%s%d:%d", cur_drvr->name, -+ diskid, part); -+ efi_disk_add_dev(devname, cur_drvr, desc, diskid, info.start); -+ part++; -+ disks++; -+ } -+#endif -+ -+ return disks; -+} -+ - /* - * U-Boot doesn't have a list of all online disk devices. So when running our - * EFI payload, we scan through all of the potentially available ones and -@@ -214,6 +243,12 @@ int efi_disk_register(void) - cur_drvr->name, i); - efi_disk_add_dev(devname, cur_drvr, desc, i, 0); - disks++; -+ -+ /* -+ * El Torito images show up as block devices -+ * in an EFI world, so let's create them here -+ */ -+ disks += efi_disk_create_eltorito(desc, cur_drvr, i); - } - } - printf("Found %d disks\n", disks); --- -1.8.5.6 - diff --git a/0009-efi_loader-Pass-file-path-to-payload.patch b/0009-efi_loader-Pass-file-path-to-payload.patch deleted file mode 100644 index 784a3a2..0000000 --- a/0009-efi_loader-Pass-file-path-to-payload.patch +++ /dev/null @@ -1,144 +0,0 @@ -From 537b0b2a8ad595a8ebf0c1994c60d4a5c43e2e19 Mon Sep 17 00:00:00 2001 -From: Alexander Graf -Date: Mon, 11 Apr 2016 16:04:44 +0200 -Subject: [PATCH 09/17] efi_loader: Pass file path to payload - -The payload gets information on where it got loaded from. This includes -the device as well as file path. - -So far we've treated both as the same thing and always gave it the device -name. However, in some situations grub2 actually wants to find its loading -path to find its configuration file. - -So let's split the two semantically separte bits into separate structs and -pass the loaded file name into our payload when we load it using "load". - -Signed-off-by: Alexander Graf ---- - cmd/bootefi.c | 32 +++++++++++++++++++++++++------- - cmd/fs.c | 3 ++- - include/efi_loader.h | 5 +++-- - 3 files changed, 30 insertions(+), 10 deletions(-) - -diff --git a/cmd/bootefi.c b/cmd/bootefi.c -index 0d09aa1..adcf645 100644 ---- a/cmd/bootefi.c -+++ b/cmd/bootefi.c -@@ -34,17 +34,30 @@ static struct efi_device_path_file_path bootefi_image_path[] = { - } - }; - -+static struct efi_device_path_file_path bootefi_device_path[] = { -+ { -+ .dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE, -+ .dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH, -+ .dp.length = sizeof(bootefi_image_path[0]), -+ .str = { 'b','o','o','t','e','f','i' }, -+ }, { -+ .dp.type = DEVICE_PATH_TYPE_END, -+ .dp.sub_type = DEVICE_PATH_SUB_TYPE_END, -+ .dp.length = sizeof(bootefi_image_path[0]), -+ } -+}; -+ - static efi_status_t bootefi_open_dp(void *handle, efi_guid_t *protocol, - void **protocol_interface, void *agent_handle, - void *controller_handle, uint32_t attributes) - { -- *protocol_interface = bootefi_image_path; -+ *protocol_interface = bootefi_device_path; - return EFI_SUCCESS; - } - - /* The EFI loaded_image interface for the image executed via "bootefi" */ - static struct efi_loaded_image loaded_image_info = { -- .device_handle = bootefi_image_path, -+ .device_handle = bootefi_device_path, - .file_path = bootefi_image_path, - }; - -@@ -63,7 +76,7 @@ static struct efi_object loaded_image_info_obj = { - { - /* - * When asking for the device path interface, return -- * bootefi_image_path -+ * bootefi_device_path - */ - .guid = &efi_guid_device_path, - .open = &bootefi_open_dp, -@@ -73,11 +86,11 @@ static struct efi_object loaded_image_info_obj = { - - /* The EFI object struct for the device the "bootefi" image was loaded from */ - static struct efi_object bootefi_device_obj = { -- .handle = bootefi_image_path, -+ .handle = bootefi_device_path, - .protocols = { - { - /* When asking for the device path interface, return -- * bootefi_image_path */ -+ * bootefi_device_path */ - .guid = &efi_guid_device_path, - .open = &bootefi_open_dp, - } -@@ -192,7 +205,7 @@ U_BOOT_CMD( - bootefi_help_text - ); - --void efi_set_bootdev(const char *dev, const char *devnr) -+void efi_set_bootdev(const char *dev, const char *devnr, const char *path) - { - __maybe_unused struct blk_desc *desc; - char devname[16] = { 0 }; /* dp->str is u16[16] long */ -@@ -217,7 +230,12 @@ void efi_set_bootdev(const char *dev, const char *devnr) - if (colon) - *colon = '\0'; - -- /* Patch the bootefi_image_path to the target device */ -+ /* Patch bootefi_device_path to the target device */ -+ memset(bootefi_device_path[0].str, 0, sizeof(bootefi_device_path[0].str)); -+ ascii2unicode(bootefi_device_path[0].str, devname); -+ -+ /* Patch bootefi_image_path to the target file path */ - memset(bootefi_image_path[0].str, 0, sizeof(bootefi_image_path[0].str)); -+ snprintf(devname, sizeof(devname), "%s", path); - ascii2unicode(bootefi_image_path[0].str, devname); - } -diff --git a/cmd/fs.c b/cmd/fs.c -index be8f289..abfe5be 100644 ---- a/cmd/fs.c -+++ b/cmd/fs.c -@@ -27,7 +27,8 @@ U_BOOT_CMD( - static int do_load_wrapper(cmd_tbl_t *cmdtp, int flag, int argc, - char * const argv[]) - { -- efi_set_bootdev(argv[1], (argc > 2) ? argv[2] : ""); -+ efi_set_bootdev(argv[1], (argc > 2) ? argv[2] : "", -+ (argc > 4) ? argv[4] : ""); - return do_load(cmdtp, flag, argc, argv, FS_TYPE_ANY); - } - -diff --git a/include/efi_loader.h b/include/efi_loader.h -index 9f61fc4..88b8149 100644 ---- a/include/efi_loader.h -+++ b/include/efi_loader.h -@@ -112,7 +112,7 @@ efi_status_t efi_exit_func(efi_status_t ret); - /* Call this to relocate the runtime section to an address space */ - void efi_runtime_relocate(ulong offset, struct efi_mem_desc *map); - /* Call this to set the current device name */ --void efi_set_bootdev(const char *dev, const char *devnr); -+void efi_set_bootdev(const char *dev, const char *devnr, const char *path); - - /* Generic EFI memory allocator, call this to get memory */ - void *efi_alloc(uint64_t len, int memory_type); -@@ -155,6 +155,7 @@ static inline void ascii2unicode(u16 *unicode, char *ascii) - - /* No loader configured, stub out EFI_ENTRY */ - static inline void efi_restore_gd(void) { } --static inline void efi_set_bootdev(const char *dev, const char *devnr) { } -+static inline void efi_set_bootdev(const char *dev, const char *devnr, -+ const char *path) { } - - #endif --- -1.8.5.6 - diff --git a/0010-efi_loader-Increase-path-string-to-32-characters.patch b/0010-efi_loader-Increase-path-string-to-32-characters.patch deleted file mode 100644 index aaf8d19..0000000 --- a/0010-efi_loader-Increase-path-string-to-32-characters.patch +++ /dev/null @@ -1,71 +0,0 @@ -From dedb3e25ad7ec8cfb1cf5c58165fdb9b67eecbad Mon Sep 17 00:00:00 2001 -From: Alexander Graf -Date: Mon, 11 Apr 2016 16:10:22 +0200 -Subject: [PATCH 10/17] efi_loader: Increase path string to 32 characters - -Whenever we want to tell our payload about a path, we limit ourselves -to a reasonable amount of characters. So far we only passed in device -names - exceeding 16 chars was unlikely there. - -However by now we also pass real file path information, so let's increase -the limit to 32 characters. That way common paths like "boot/efi/bootaa64.efi" -fit just fine. - -Signed-off-by: Alexander Graf ---- - cmd/bootefi.c | 2 +- - include/efi_api.h | 2 +- - lib/efi_loader/efi_disk.c | 4 ++-- - 3 files changed, 4 insertions(+), 4 deletions(-) - -diff --git a/cmd/bootefi.c b/cmd/bootefi.c -index adcf645..f502996 100644 ---- a/cmd/bootefi.c -+++ b/cmd/bootefi.c -@@ -208,7 +208,7 @@ U_BOOT_CMD( - void efi_set_bootdev(const char *dev, const char *devnr, const char *path) - { - __maybe_unused struct blk_desc *desc; -- char devname[16] = { 0 }; /* dp->str is u16[16] long */ -+ char devname[32] = { 0 }; /* dp->str is u16[32] long */ - char *colon; - - /* Assemble the condensed device name we use in efi_disk.c */ -diff --git a/include/efi_api.h b/include/efi_api.h -index 6960448..51d7586 100644 ---- a/include/efi_api.h -+++ b/include/efi_api.h -@@ -259,7 +259,7 @@ struct efi_device_path { - - struct efi_device_path_file_path { - struct efi_device_path dp; -- u16 str[16]; -+ u16 str[32]; - }; - - #define BLOCK_IO_GUID \ -diff --git a/lib/efi_loader/efi_disk.c b/lib/efi_loader/efi_disk.c -index b3d56a8..28e5b7f 100644 ---- a/lib/efi_loader/efi_disk.c -+++ b/lib/efi_loader/efi_disk.c -@@ -194,7 +194,7 @@ static int efi_disk_create_eltorito(struct blk_desc *desc, - { - int disks = 0; - #ifdef CONFIG_ISO_PARTITION -- char devname[16] = { 0 }; /* dp->str is u16[16] long */ -+ char devname[32] = { 0 }; /* dp->str is u16[32] long */ - disk_partition_t info; - int part = 1; - -@@ -231,7 +231,7 @@ int efi_disk_register(void) - printf("Scanning disks on %s...\n", cur_drvr->name); - for (i = 0; i < 4; i++) { - struct blk_desc *desc; -- char devname[16] = { 0 }; /* dp->str is u16[16] long */ -+ char devname[32] = { 0 }; /* dp->str is u16[32] long */ - - desc = blk_get_dev(cur_drvr->name, i); - if (!desc) --- -1.8.5.6 - diff --git a/0011-distro-Enable-iso-partition-code.patch b/0011-distro-Enable-iso-partition-code.patch deleted file mode 100644 index cdf06ae..0000000 --- a/0011-distro-Enable-iso-partition-code.patch +++ /dev/null @@ -1,29 +0,0 @@ -From fb90f908ffa4c8941f46d034bf808bf916ed8684 Mon Sep 17 00:00:00 2001 -From: Alexander Graf -Date: Mon, 11 Apr 2016 16:13:09 +0200 -Subject: [PATCH 11/17] distro: Enable iso partition code - -Now that we can properly boot EFI payloads from iso el torito -images, let's enable support for isos by default in the distro -header. - -Signed-off-by: Alexander Graf ---- - include/config_distro_defaults.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/include/config_distro_defaults.h b/include/config_distro_defaults.h -index 2ba7cf4..076be4d 100644 ---- a/include/config_distro_defaults.h -+++ b/include/config_distro_defaults.h -@@ -62,6 +62,7 @@ - #define CONFIG_MENU - #define CONFIG_DOS_PARTITION - #define CONFIG_EFI_PARTITION -+#define CONFIG_ISO_PARTITION - #define CONFIG_SUPPORT_RAW_INITRD - #define CONFIG_SYS_HUSH_PARSER - --- -1.8.5.6 - diff --git a/0012-efi_loader-Use-system-fdt-as-fallback.patch b/0012-efi_loader-Use-system-fdt-as-fallback.patch deleted file mode 100644 index 7c72276..0000000 --- a/0012-efi_loader-Use-system-fdt-as-fallback.patch +++ /dev/null @@ -1,109 +0,0 @@ -From f0595525fa4fcd9c876bdcfaad14713f2751f4cc Mon Sep 17 00:00:00 2001 -From: Alexander Graf -Date: Mon, 11 Apr 2016 16:49:16 +0200 -Subject: [PATCH 12/17] efi_loader: Use system fdt as fallback - -When the user did not pass any device tree or the boot script -didn't find any, let's use the system device tree as last resort -to get something the payload (Linux) may understand. - -This means that on systems that use the same device tree for U-Boot -and Linux we can just share it and there's no need to manually provide -a device tree in the target image. - -While at it, also copy and pad the device tree by 64kb to give us -space for modifications. - -Signed-off-by: Alexander Graf ---- - cmd/bootefi.c | 37 +++++++++++++++++++++++++++++++------ - 1 file changed, 31 insertions(+), 6 deletions(-) - -diff --git a/cmd/bootefi.c b/cmd/bootefi.c -index f502996..9b8af65 100644 ---- a/cmd/bootefi.c -+++ b/cmd/bootefi.c -@@ -12,6 +12,10 @@ - #include - #include - #include -+#include -+#include -+ -+DECLARE_GLOBAL_DATA_PTR; - - /* - * When booting using the "bootefi" command, we don't know which -@@ -97,6 +101,21 @@ static struct efi_object bootefi_device_obj = { - }, - }; - -+static void *copy_fdt(void *fdt) -+{ -+ u64 fdt_size = fdt_totalsize(fdt); -+ void *new_fdt; -+ -+ /* Give us 64kb breathing room */ -+ fdt_size += 64 * 1024; -+ -+ new_fdt = malloc(fdt_size); -+ memcpy(new_fdt, fdt, fdt_totalsize(fdt)); -+ fdt_set_totalsize(new_fdt, fdt_size); -+ -+ return new_fdt; -+} -+ - /* - * Load an EFI payload into a newly allocated piece of memory, register all - * EFI objects it would want to access and jump to it. -@@ -106,6 +125,7 @@ static unsigned long do_bootefi_exec(void *efi) - ulong (*entry)(void *image_handle, struct efi_system_table *st); - ulong fdt_pages, fdt_size, fdt_start, fdt_end; - bootm_headers_t img = { 0 }; -+ void *fdt = working_fdt; - - /* - * gd lives in a fixed register which may get clobbered while we execute -@@ -115,28 +135,33 @@ static unsigned long do_bootefi_exec(void *efi) - - /* Update system table to point to our currently loaded FDT */ - -- if (working_fdt) { -+ /* Fall back to included fdt if none was manually loaded */ -+ if (!fdt && gd->fdt_blob) -+ fdt = (void *)gd->fdt_blob; -+ -+ if (fdt) { - /* Prepare fdt for payload */ -- if (image_setup_libfdt(&img, working_fdt, 0, NULL)) { -+ fdt = copy_fdt(fdt); -+ -+ if (image_setup_libfdt(&img, fdt, 0, NULL)) { - printf("ERROR: Failed to process device tree\n"); - return -EINVAL; - } - - /* Link to it in the efi tables */ - systab.tables[0].guid = EFI_FDT_GUID; -- systab.tables[0].table = working_fdt; -+ systab.tables[0].table = fdt; - systab.nr_tables = 1; - - /* And reserve the space in the memory map */ -- fdt_start = ((ulong)working_fdt) & ~EFI_PAGE_MASK; -- fdt_end = ((ulong)working_fdt) + fdt_totalsize(working_fdt); -+ fdt_start = ((ulong)fdt) & ~EFI_PAGE_MASK; -+ fdt_end = ((ulong)fdt) + fdt_totalsize(fdt); - fdt_size = (fdt_end - fdt_start) + EFI_PAGE_MASK; - fdt_pages = fdt_size >> EFI_PAGE_SHIFT; - /* Give a bootloader the chance to modify the device tree */ - fdt_pages += 2; - efi_add_memory_map(fdt_start, fdt_pages, - EFI_BOOT_SERVICES_DATA, true); -- - } else { - printf("WARNING: No device tree loaded, expect boot to fail\n"); - systab.nr_tables = 0; --- -1.8.5.6 - diff --git a/0013-efi_loader-Put-fdt-into-convenient-location.patch b/0013-efi_loader-Put-fdt-into-convenient-location.patch deleted file mode 100644 index 0bb80a7..0000000 --- a/0013-efi_loader-Put-fdt-into-convenient-location.patch +++ /dev/null @@ -1,71 +0,0 @@ -From 679965d50ab6a02beb7453e45a136bed4f3ee6f8 Mon Sep 17 00:00:00 2001 -From: Alexander Graf -Date: Mon, 11 Apr 2016 23:45:07 +0200 -Subject: [PATCH 13/17] efi_loader: Put fdt into convenient location - -The uEFI spec doesn't dictate where the device tree should live at, but -legacy 32bit ARM grub2 has some assumptions that it may stay at its place -when it's already loaded by the firmware. - -So let's put it somewhere where Linux that comes after would happily find -it - around the recommended 128MB line. - -Signed-off-by: Alexander Graf ---- - cmd/bootefi.c | 30 ++++++++++++++++++++++++++---- - 1 file changed, 26 insertions(+), 4 deletions(-) - -diff --git a/cmd/bootefi.c b/cmd/bootefi.c -index 9b8af65..b213ef1 100644 ---- a/cmd/bootefi.c -+++ b/cmd/bootefi.c -@@ -12,7 +12,7 @@ - #include - #include - #include --#include -+#include - #include - - DECLARE_GLOBAL_DATA_PTR; -@@ -104,12 +104,34 @@ static struct efi_object bootefi_device_obj = { - static void *copy_fdt(void *fdt) - { - u64 fdt_size = fdt_totalsize(fdt); -+ unsigned long fdt_ram_start = -1L, fdt_pages; -+ u64 new_fdt_addr; - void *new_fdt; -+ int i; - -- /* Give us 64kb breathing room */ -- fdt_size += 64 * 1024; -+ for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { -+ u64 ram_start = gd->bd->bi_dram[i].start; -+ u64 ram_size = gd->bd->bi_dram[i].size; - -- new_fdt = malloc(fdt_size); -+ if (!ram_size) -+ continue; -+ -+ if (ram_start < fdt_ram_start) -+ fdt_ram_start = ram_start; -+ } -+ -+ /* Give us at least 4kb breathing room */ -+ fdt_size = ALIGN(fdt_size + 4096, 4096); -+ fdt_pages = fdt_size >> EFI_PAGE_SHIFT; -+ -+ /* Safe fdt location is at 128MB */ -+ new_fdt_addr = fdt_ram_start + (128 * 1024 * 1024) + fdt_size; -+ if (efi_allocate_pages(1, EFI_BOOT_SERVICES_DATA, fdt_pages, -+ &new_fdt_addr) != EFI_SUCCESS) { -+ /* If we can't put it there, put it somewhere */ -+ new_fdt_addr = (ulong)memalign(4096, fdt_size); -+ } -+ new_fdt = (void*)(ulong)new_fdt_addr; - memcpy(new_fdt, fdt, fdt_totalsize(fdt)); - fdt_set_totalsize(new_fdt, fdt_size); - --- -1.8.5.6 - diff --git a/0014-efi_loader-Expose-ascending-efi-memory-map.patch b/0014-efi_loader-Expose-ascending-efi-memory-map.patch deleted file mode 100644 index 50ccf5b..0000000 --- a/0014-efi_loader-Expose-ascending-efi-memory-map.patch +++ /dev/null @@ -1,55 +0,0 @@ -From 88cba11445329c9f79f34b91e443eafa556adf92 Mon Sep 17 00:00:00 2001 -From: Alexander Graf -Date: Mon, 11 Apr 2016 23:47:30 +0200 -Subject: [PATCH 14/17] efi_loader: Expose ascending efi memory map - -The EFI memory map does not need to be in a strict order, but 32bit -grub2 does expect it to be ascending. If it's not, it may try to -allocate memory inside the U-Boot data memory region. - -We already sort the memory map in descending order, so let's just -reverse it when we pass it to a payload. - -Signed-off-by: Alexander Graf ---- - lib/efi_loader/efi_memory.c | 9 +++++++-- - 1 file changed, 7 insertions(+), 2 deletions(-) - -diff --git a/lib/efi_loader/efi_memory.c b/lib/efi_loader/efi_memory.c -index 8a1e249..df99585 100644 ---- a/lib/efi_loader/efi_memory.c -+++ b/lib/efi_loader/efi_memory.c -@@ -286,10 +286,13 @@ efi_status_t efi_get_memory_map(unsigned long *memory_map_size, - uint32_t *descriptor_version) - { - ulong map_size = 0; -+ int map_entries = 0; - struct list_head *lhandle; - - list_for_each(lhandle, &efi_mem) -- map_size += sizeof(struct efi_mem_desc); -+ map_entries++; -+ -+ map_size = map_entries * sizeof(struct efi_mem_desc); - - *memory_map_size = map_size; - -@@ -301,12 +304,14 @@ efi_status_t efi_get_memory_map(unsigned long *memory_map_size, - - /* Copy list into array */ - if (memory_map) { -+ /* Return the list in ascending order */ -+ memory_map = &memory_map[map_entries - 1]; - list_for_each(lhandle, &efi_mem) { - struct efi_mem_list *lmem; - - lmem = list_entry(lhandle, struct efi_mem_list, link); - *memory_map = lmem->desc; -- memory_map++; -+ memory_map--; - } - } - --- -1.8.5.6 - diff --git a/0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch b/0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch deleted file mode 100644 index 9a3d14c..0000000 --- a/0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch +++ /dev/null @@ -1,53 +0,0 @@ -From 087b2b685be9c55af1b5ecce057da26536982b5c Mon Sep 17 00:00:00 2001 -From: Alexander Graf -Date: Mon, 4 Apr 2016 09:25:09 +0200 -Subject: [PATCH 15/17] efi_loader: Always flush in cache line size granularity - -The cache line flush helpers only work properly when they get aligned -start and end addresses. Round our flush range to cache line size. It's -safe because we're guaranteed to flush within a single page which has the -same cache attributes. - -Reported-by: Marek Vasut -Signed-off-by: Alexander Graf - ---- - -v1 -> v2: - - - Fix compilation on systems without CONFIG_SYS_CACHELINE_SIZE ---- - lib/efi_loader/efi_runtime.c | 10 +++++++++- - 1 file changed, 9 insertions(+), 1 deletion(-) - -diff --git a/lib/efi_loader/efi_runtime.c b/lib/efi_loader/efi_runtime.c -index 22bcd08..3ee27ca 100644 ---- a/lib/efi_loader/efi_runtime.c -+++ b/lib/efi_loader/efi_runtime.c -@@ -20,6 +20,13 @@ static efi_status_t EFI_RUNTIME_TEXT EFIAPI efi_unimplemented(void); - static efi_status_t EFI_RUNTIME_TEXT EFIAPI efi_device_error(void); - static efi_status_t EFI_RUNTIME_TEXT EFIAPI efi_invalid_parameter(void); - -+#ifdef CONFIG_SYS_CACHELINE_SIZE -+#define EFI_CACHELINE_SIZE CONFIG_SYS_CACHELINE_SIZE -+#else -+/* Just use the greatest cache flush alignment requirement I'm aware of */ -+#define EFI_CACHELINE_SIZE 128 -+#endif -+ - #if defined(CONFIG_ARM64) - #define R_RELATIVE 1027 - #define R_MASK 0xffffffffULL -@@ -194,7 +201,8 @@ void efi_runtime_relocate(ulong offset, struct efi_mem_desc *map) - #endif - - *p = newaddr; -- flush_dcache_range((ulong)p, (ulong)&p[1]); -+ flush_dcache_range((ulong)p & ~(EFI_CACHELINE_SIZE - 1), -+ ALIGN((ulong)&p[1], EFI_CACHELINE_SIZE)); - } - - #ifndef IS_RELA --- -1.8.5.6 - diff --git a/0016-efi_loader-Handle-memory-overflows.patch b/0016-efi_loader-Handle-memory-overflows.patch deleted file mode 100644 index 70ab27f..0000000 --- a/0016-efi_loader-Handle-memory-overflows.patch +++ /dev/null @@ -1,48 +0,0 @@ -From b4cdefea239cc56f9970fe2709eba507ddcc429b Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20F=C3=A4rber?= -Date: Wed, 13 Apr 2016 14:04:38 +0200 -Subject: [PATCH 16/17] efi_loader: Handle memory overflows -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -jetson-tk1 has 2 GB of RAM at 0x80000000, causing gd->ram_top to be zero. -Handle this by either avoiding ram_top or by using the same type as -ram_top to reverse the overflow effect. - -Cc: Alexander Graf -Signed-off-by: Andreas Färber -Signed-off-by: Alexander Graf ---- - lib/efi_loader/efi_memory.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/lib/efi_loader/efi_memory.c b/lib/efi_loader/efi_memory.c -index df99585..71a3d19 100644 ---- a/lib/efi_loader/efi_memory.c -+++ b/lib/efi_loader/efi_memory.c -@@ -220,7 +220,7 @@ efi_status_t efi_allocate_pages(int type, int memory_type, - switch (type) { - case 0: - /* Any page */ -- addr = efi_find_free_memory(len, gd->ram_top); -+ addr = efi_find_free_memory(len, gd->start_addr_sp); - if (!addr) { - r = EFI_NOT_FOUND; - break; -@@ -320,9 +320,9 @@ efi_status_t efi_get_memory_map(unsigned long *memory_map_size, - - int efi_memory_init(void) - { -- uint64_t runtime_start, runtime_end, runtime_pages; -- uint64_t uboot_start, uboot_pages; -- uint64_t uboot_stack_size = 16 * 1024 * 1024; -+ unsigned long runtime_start, runtime_end, runtime_pages; -+ unsigned long uboot_start, uboot_pages; -+ unsigned long uboot_stack_size = 16 * 1024 * 1024; - int i; - - /* Add RAM */ --- -1.8.5.6 - diff --git a/0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch b/0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch deleted file mode 100644 index b307bdd..0000000 --- a/0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 51b81f8879de15322824fdfef08d4fef48c821fe Mon Sep 17 00:00:00 2001 -From: Stephen Warren -Date: Wed, 13 Apr 2016 22:11:16 -0600 -Subject: [PATCH 17/17] ARM: rpi: fix 64-bit CONFIG_SYS_TEXT_BASE - -The Pi firmware has changed the default "kernel" load address for 64-bit -mode. Adapt U-Boot to the new value. - -Signed-off-by: Stephen Warren -Signed-off-by: Alexander Graf ---- - include/configs/rpi.h | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/include/configs/rpi.h b/include/configs/rpi.h -index b83d622..19ca606 100644 ---- a/include/configs/rpi.h -+++ b/include/configs/rpi.h -@@ -48,7 +48,11 @@ - /* Memory layout */ - #define CONFIG_NR_DRAM_BANKS 1 - #define CONFIG_SYS_SDRAM_BASE 0x00000000 -+#ifdef CONFIG_ARM64 -+#define CONFIG_SYS_TEXT_BASE 0x00080000 -+#else - #define CONFIG_SYS_TEXT_BASE 0x00008000 -+#endif - #define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE - /* - * The board really has 256M. However, the VC (VideoCore co-processor) shares --- -1.8.5.6 - diff --git a/u-boot-2016.05-rc1.tar.bz2 b/u-boot-2016.05-rc1.tar.bz2 deleted file mode 100644 index 8d2faea..0000000 --- a/u-boot-2016.05-rc1.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:10b531b49bbc7a6005836fd21aa63374ccf1395590564eb0ef11195a3beec43c -size 11284889 diff --git a/u-boot-2016.05-rc3.tar.bz2 b/u-boot-2016.05-rc3.tar.bz2 new file mode 100644 index 0000000..d30c4fe --- /dev/null +++ b/u-boot-2016.05-rc3.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce7380814b4c399f10323d799677853efc731d888d4eff359f78f52aeb27bbc7 +size 11342439 diff --git a/u-boot-a10-olinuxino-lime.changes b/u-boot-a10-olinuxino-lime.changes index ecd5d81..2500665 100644 --- a/u-boot-a10-olinuxino-lime.changes +++ b/u-boot-a10-olinuxino-lime.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-a10-olinuxino-lime.spec b/u-boot-a10-olinuxino-lime.spec index 70558bd..eeee79d 100644 --- a/u-boot-a10-olinuxino-lime.spec +++ b/u-boot-a10-olinuxino-lime.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-a10-olinuxino-lime -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the a10-olinuxino-lime arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A10-OLinuXino-Lime_defconfig diff --git a/u-boot-a13-olinuxino.changes b/u-boot-a13-olinuxino.changes index ecd5d81..2500665 100644 --- a/u-boot-a13-olinuxino.changes +++ b/u-boot-a13-olinuxino.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-a13-olinuxino.spec b/u-boot-a13-olinuxino.spec index 35a4f93..1f8d5e6 100644 --- a/u-boot-a13-olinuxino.spec +++ b/u-boot-a13-olinuxino.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-a13-olinuxino -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the a13-olinuxino arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A13-OLinuXino_defconfig diff --git a/u-boot-a13-olinuxinom.changes b/u-boot-a13-olinuxinom.changes index ecd5d81..2500665 100644 --- a/u-boot-a13-olinuxinom.changes +++ b/u-boot-a13-olinuxinom.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-a13-olinuxinom.spec b/u-boot-a13-olinuxinom.spec index 83f8325..a63be24 100644 --- a/u-boot-a13-olinuxinom.spec +++ b/u-boot-a13-olinuxinom.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-a13-olinuxinom -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the a13-olinuxinom arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A13-OLinuXinoM_defconfig diff --git a/u-boot-a20-olinuxino-lime.changes b/u-boot-a20-olinuxino-lime.changes index ecd5d81..2500665 100644 --- a/u-boot-a20-olinuxino-lime.changes +++ b/u-boot-a20-olinuxino-lime.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-a20-olinuxino-lime.spec b/u-boot-a20-olinuxino-lime.spec index a5f95fd..23f6ecf 100644 --- a/u-boot-a20-olinuxino-lime.spec +++ b/u-boot-a20-olinuxino-lime.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-a20-olinuxino-lime -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the a20-olinuxino-lime arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino-Lime_defconfig diff --git a/u-boot-a20-olinuxino-lime2.changes b/u-boot-a20-olinuxino-lime2.changes index ecd5d81..2500665 100644 --- a/u-boot-a20-olinuxino-lime2.changes +++ b/u-boot-a20-olinuxino-lime2.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-a20-olinuxino-lime2.spec b/u-boot-a20-olinuxino-lime2.spec index 7dda643..984fbb9 100644 --- a/u-boot-a20-olinuxino-lime2.spec +++ b/u-boot-a20-olinuxino-lime2.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-a20-olinuxino-lime2 -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the a20-olinuxino-lime2 arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino-Lime2_defconfig diff --git a/u-boot-a20-olinuxinomicro.changes b/u-boot-a20-olinuxinomicro.changes index ecd5d81..2500665 100644 --- a/u-boot-a20-olinuxinomicro.changes +++ b/u-boot-a20-olinuxinomicro.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-a20-olinuxinomicro.spec b/u-boot-a20-olinuxinomicro.spec index b6dfb48..38ef23f 100644 --- a/u-boot-a20-olinuxinomicro.spec +++ b/u-boot-a20-olinuxinomicro.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-a20-olinuxinomicro -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the a20-olinuxinomicro arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino_MICRO_defconfig diff --git a/u-boot-am335xboneblack.changes b/u-boot-am335xboneblack.changes index ecd5d81..2500665 100644 --- a/u-boot-am335xboneblack.changes +++ b/u-boot-am335xboneblack.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-am335xboneblack.spec b/u-boot-am335xboneblack.spec index ab14db5..506ce8d 100644 --- a/u-boot-am335xboneblack.spec +++ b/u-boot-am335xboneblack.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-am335xboneblack -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the am335xboneblack arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" am335x_boneblack_defconfig diff --git a/u-boot-am335xevm.changes b/u-boot-am335xevm.changes index ecd5d81..2500665 100644 --- a/u-boot-am335xevm.changes +++ b/u-boot-am335xevm.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-am335xevm.spec b/u-boot-am335xevm.spec index 59635f3..e261436 100644 --- a/u-boot-am335xevm.spec +++ b/u-boot-am335xevm.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-am335xevm -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the am335xevm arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" am335x_evm_defconfig diff --git a/u-boot-am57xxevm.changes b/u-boot-am57xxevm.changes index ecd5d81..2500665 100644 --- a/u-boot-am57xxevm.changes +++ b/u-boot-am57xxevm.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-am57xxevm.spec b/u-boot-am57xxevm.spec index a352def..31d8432 100644 --- a/u-boot-am57xxevm.spec +++ b/u-boot-am57xxevm.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-am57xxevm -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the am57xxevm arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" am57xx_evm_defconfig diff --git a/u-boot-am57xxevmnodt.changes b/u-boot-am57xxevmnodt.changes index ecd5d81..2500665 100644 --- a/u-boot-am57xxevmnodt.changes +++ b/u-boot-am57xxevmnodt.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-am57xxevmnodt.spec b/u-boot-am57xxevmnodt.spec index 9208b2a..9c4a89b 100644 --- a/u-boot-am57xxevmnodt.spec +++ b/u-boot-am57xxevmnodt.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-am57xxevmnodt -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the am57xxevmnodt arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" am57xx_evm_nodt_defconfig diff --git a/u-boot-arndale.changes b/u-boot-arndale.changes index ecd5d81..2500665 100644 --- a/u-boot-arndale.changes +++ b/u-boot-arndale.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-arndale.spec b/u-boot-arndale.spec index f953662..d468f03 100644 --- a/u-boot-arndale.spec +++ b/u-boot-arndale.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-arndale -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the arndale arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" arndale_defconfig diff --git a/u-boot-bananapi.changes b/u-boot-bananapi.changes index ecd5d81..2500665 100644 --- a/u-boot-bananapi.changes +++ b/u-boot-bananapi.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-bananapi.spec b/u-boot-bananapi.spec index 29e1227..862c03b 100644 --- a/u-boot-bananapi.spec +++ b/u-boot-bananapi.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-bananapi -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the bananapi arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Bananapi_defconfig diff --git a/u-boot-clearfog.changes b/u-boot-clearfog.changes index ecd5d81..2500665 100644 --- a/u-boot-clearfog.changes +++ b/u-boot-clearfog.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-clearfog.spec b/u-boot-clearfog.spec index 4188447..3e5669a 100644 --- a/u-boot-clearfog.spec +++ b/u-boot-clearfog.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-clearfog -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the clearfog arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" clearfog_defconfig diff --git a/u-boot-colibrit20.changes b/u-boot-colibrit20.changes index ecd5d81..2500665 100644 --- a/u-boot-colibrit20.changes +++ b/u-boot-colibrit20.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-colibrit20.spec b/u-boot-colibrit20.spec index f7414df..2d4e9ef 100644 --- a/u-boot-colibrit20.spec +++ b/u-boot-colibrit20.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-colibrit20 -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the colibrit20 arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" colibri_t20_defconfig diff --git a/u-boot-cubieboard.changes b/u-boot-cubieboard.changes index ecd5d81..2500665 100644 --- a/u-boot-cubieboard.changes +++ b/u-boot-cubieboard.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-cubieboard.spec b/u-boot-cubieboard.spec index fcb99e9..0a10c98 100644 --- a/u-boot-cubieboard.spec +++ b/u-boot-cubieboard.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-cubieboard -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the cubieboard arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubieboard_defconfig diff --git a/u-boot-cubieboard2.changes b/u-boot-cubieboard2.changes index ecd5d81..2500665 100644 --- a/u-boot-cubieboard2.changes +++ b/u-boot-cubieboard2.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-cubieboard2.spec b/u-boot-cubieboard2.spec index 7c6ebb3..21d4b50 100644 --- a/u-boot-cubieboard2.spec +++ b/u-boot-cubieboard2.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-cubieboard2 -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the cubieboard2 arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubieboard2_defconfig diff --git a/u-boot-cubietruck.changes b/u-boot-cubietruck.changes index ecd5d81..2500665 100644 --- a/u-boot-cubietruck.changes +++ b/u-boot-cubietruck.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-cubietruck.spec b/u-boot-cubietruck.spec index 1a1656a..ed34470 100644 --- a/u-boot-cubietruck.spec +++ b/u-boot-cubietruck.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-cubietruck -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the cubietruck arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubietruck_defconfig diff --git a/u-boot-firefly-rk3288.changes b/u-boot-firefly-rk3288.changes index ecd5d81..2500665 100644 --- a/u-boot-firefly-rk3288.changes +++ b/u-boot-firefly-rk3288.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-firefly-rk3288.spec b/u-boot-firefly-rk3288.spec index 729dff3..883380b 100644 --- a/u-boot-firefly-rk3288.spec +++ b/u-boot-firefly-rk3288.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-firefly-rk3288 -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the firefly-rk3288 arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" firefly-rk3288_defconfig diff --git a/u-boot-highbank.changes b/u-boot-highbank.changes index ecd5d81..2500665 100644 --- a/u-boot-highbank.changes +++ b/u-boot-highbank.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-highbank.spec b/u-boot-highbank.spec index 3a43d5f..45194e2 100644 --- a/u-boot-highbank.spec +++ b/u-boot-highbank.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-highbank -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the highbank arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" highbank_defconfig diff --git a/u-boot-hyundaia7hd.changes b/u-boot-hyundaia7hd.changes index ecd5d81..2500665 100644 --- a/u-boot-hyundaia7hd.changes +++ b/u-boot-hyundaia7hd.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-hyundaia7hd.spec b/u-boot-hyundaia7hd.spec index b95e907..f12a4aa 100644 --- a/u-boot-hyundaia7hd.spec +++ b/u-boot-hyundaia7hd.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-hyundaia7hd -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the hyundaia7hd arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Hyundai_A7HD_defconfig diff --git a/u-boot-jetson-tk1.changes b/u-boot-jetson-tk1.changes index ecd5d81..2500665 100644 --- a/u-boot-jetson-tk1.changes +++ b/u-boot-jetson-tk1.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-jetson-tk1.spec b/u-boot-jetson-tk1.spec index 88a3b40..cca4ec0 100644 --- a/u-boot-jetson-tk1.spec +++ b/u-boot-jetson-tk1.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-jetson-tk1 -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the jetson-tk1 arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" jetson-tk1_defconfig diff --git a/u-boot-melea1000.changes b/u-boot-melea1000.changes index ecd5d81..2500665 100644 --- a/u-boot-melea1000.changes +++ b/u-boot-melea1000.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-melea1000.spec b/u-boot-melea1000.spec index 90addee..519dd40 100644 --- a/u-boot-melea1000.spec +++ b/u-boot-melea1000.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-melea1000 -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the melea1000 arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Mele_A1000_defconfig diff --git a/u-boot-merriia80optimus.changes b/u-boot-merriia80optimus.changes index ecd5d81..2500665 100644 --- a/u-boot-merriia80optimus.changes +++ b/u-boot-merriia80optimus.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-merriia80optimus.spec b/u-boot-merriia80optimus.spec index 7b5681c..311fb04 100644 --- a/u-boot-merriia80optimus.spec +++ b/u-boot-merriia80optimus.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-merriia80optimus -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the merriia80optimus arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Merrii_A80_Optimus_defconfig diff --git a/u-boot-mx53loco.changes b/u-boot-mx53loco.changes index ecd5d81..2500665 100644 --- a/u-boot-mx53loco.changes +++ b/u-boot-mx53loco.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-mx53loco.spec b/u-boot-mx53loco.spec index 67e5e25..721f47c 100644 --- a/u-boot-mx53loco.spec +++ b/u-boot-mx53loco.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-mx53loco -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the mx53loco arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx53loco_defconfig diff --git a/u-boot-mx6cuboxi.changes b/u-boot-mx6cuboxi.changes index ecd5d81..2500665 100644 --- a/u-boot-mx6cuboxi.changes +++ b/u-boot-mx6cuboxi.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-mx6cuboxi.spec b/u-boot-mx6cuboxi.spec index 273a8a2..8f2d872 100644 --- a/u-boot-mx6cuboxi.spec +++ b/u-boot-mx6cuboxi.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-mx6cuboxi -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the mx6cuboxi arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx6cuboxi_defconfig diff --git a/u-boot-mx6qsabrelite.changes b/u-boot-mx6qsabrelite.changes index ecd5d81..2500665 100644 --- a/u-boot-mx6qsabrelite.changes +++ b/u-boot-mx6qsabrelite.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-mx6qsabrelite.spec b/u-boot-mx6qsabrelite.spec index 07d7e82..8966f16 100644 --- a/u-boot-mx6qsabrelite.spec +++ b/u-boot-mx6qsabrelite.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-mx6qsabrelite -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the mx6qsabrelite arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx6qsabrelite_defconfig diff --git a/u-boot-odroid-xu3.changes b/u-boot-odroid-xu3.changes index ecd5d81..2500665 100644 --- a/u-boot-odroid-xu3.changes +++ b/u-boot-odroid-xu3.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-odroid-xu3.spec b/u-boot-odroid-xu3.spec index 3ea7465..372ac67 100644 --- a/u-boot-odroid-xu3.spec +++ b/u-boot-odroid-xu3.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-odroid-xu3 -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the odroid-xu3 arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" odroid-xu3_defconfig diff --git a/u-boot-odroid.changes b/u-boot-odroid.changes index ecd5d81..2500665 100644 --- a/u-boot-odroid.changes +++ b/u-boot-odroid.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-odroid.spec b/u-boot-odroid.spec index 7fede09..d46f7cc 100644 --- a/u-boot-odroid.spec +++ b/u-boot-odroid.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-odroid -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the odroid arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" odroid_defconfig diff --git a/u-boot-omap3beagle.changes b/u-boot-omap3beagle.changes index ecd5d81..2500665 100644 --- a/u-boot-omap3beagle.changes +++ b/u-boot-omap3beagle.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-omap3beagle.spec b/u-boot-omap3beagle.spec index 1eaa6e4..d7a442f 100644 --- a/u-boot-omap3beagle.spec +++ b/u-boot-omap3beagle.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-omap3beagle -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the omap3beagle arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" omap3_beagle_defconfig diff --git a/u-boot-omap4panda.changes b/u-boot-omap4panda.changes index ecd5d81..2500665 100644 --- a/u-boot-omap4panda.changes +++ b/u-boot-omap4panda.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-omap4panda.spec b/u-boot-omap4panda.spec index 6d7ee71..180e06f 100644 --- a/u-boot-omap4panda.spec +++ b/u-boot-omap4panda.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-omap4panda -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the omap4panda arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" omap4_panda_defconfig diff --git a/u-boot-orangepipc.changes b/u-boot-orangepipc.changes index ecd5d81..2500665 100644 --- a/u-boot-orangepipc.changes +++ b/u-boot-orangepipc.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-orangepipc.spec b/u-boot-orangepipc.spec index 234f99b..6473f42 100644 --- a/u-boot-orangepipc.spec +++ b/u-boot-orangepipc.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-orangepipc -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the orangepipc arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" orangepi_pc_defconfig diff --git a/u-boot-p2371-2180.changes b/u-boot-p2371-2180.changes index ecd5d81..2500665 100644 --- a/u-boot-p2371-2180.changes +++ b/u-boot-p2371-2180.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-p2371-2180.spec b/u-boot-p2371-2180.spec index be90d79..28470f6 100644 --- a/u-boot-p2371-2180.spec +++ b/u-boot-p2371-2180.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-p2371-2180 -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the p2371-2180 arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" p2371-2180_defconfig diff --git a/u-boot-paz00.changes b/u-boot-paz00.changes index ecd5d81..2500665 100644 --- a/u-boot-paz00.changes +++ b/u-boot-paz00.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-paz00.spec b/u-boot-paz00.spec index 1a212d0..b949b69 100644 --- a/u-boot-paz00.spec +++ b/u-boot-paz00.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-paz00 -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the paz00 arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" paz00_defconfig diff --git a/u-boot-pcm051rev3.changes b/u-boot-pcm051rev3.changes index ecd5d81..2500665 100644 --- a/u-boot-pcm051rev3.changes +++ b/u-boot-pcm051rev3.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-pcm051rev3.spec b/u-boot-pcm051rev3.spec index 779d2e1..ec2d872 100644 --- a/u-boot-pcm051rev3.spec +++ b/u-boot-pcm051rev3.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-pcm051rev3 -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the pcm051rev3 arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" pcm051_rev3_defconfig diff --git a/u-boot-qemu-ppce500.changes b/u-boot-qemu-ppce500.changes index ecd5d81..2500665 100644 --- a/u-boot-qemu-ppce500.changes +++ b/u-boot-qemu-ppce500.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-qemu-ppce500.spec b/u-boot-qemu-ppce500.spec index a70dabc..2005f51 100644 --- a/u-boot-qemu-ppce500.spec +++ b/u-boot-qemu-ppce500.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-qemu-ppce500 -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the qemu-ppce500 arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" qemu-ppce500_defconfig diff --git a/u-boot-rpi.changes b/u-boot-rpi.changes index ecd5d81..2500665 100644 --- a/u-boot-rpi.changes +++ b/u-boot-rpi.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-rpi.spec b/u-boot-rpi.spec index c268dba..c999f45 100644 --- a/u-boot-rpi.spec +++ b/u-boot-rpi.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-rpi -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the rpi arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_defconfig diff --git a/u-boot-rpi2.changes b/u-boot-rpi2.changes index ecd5d81..2500665 100644 --- a/u-boot-rpi2.changes +++ b/u-boot-rpi2.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-rpi2.spec b/u-boot-rpi2.spec index decf506..84498f6 100644 --- a/u-boot-rpi2.spec +++ b/u-boot-rpi2.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-rpi2 -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the rpi2 arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_2_defconfig diff --git a/u-boot-rpi3.changes b/u-boot-rpi3.changes index ecd5d81..2500665 100644 --- a/u-boot-rpi3.changes +++ b/u-boot-rpi3.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-rpi3.spec b/u-boot-rpi3.spec index 9c08759..4669520 100644 --- a/u-boot-rpi3.spec +++ b/u-boot-rpi3.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-rpi3 -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the rpi3 arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_3_defconfig diff --git a/u-boot-snow.changes b/u-boot-snow.changes index ecd5d81..2500665 100644 --- a/u-boot-snow.changes +++ b/u-boot-snow.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-snow.spec b/u-boot-snow.spec index 7f52935..463ab34 100644 --- a/u-boot-snow.spec +++ b/u-boot-snow.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-snow -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the snow arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" snow_defconfig diff --git a/u-boot-spring.changes b/u-boot-spring.changes index ecd5d81..2500665 100644 --- a/u-boot-spring.changes +++ b/u-boot-spring.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-spring.spec b/u-boot-spring.spec index 3a7c9ad..8f35466 100644 --- a/u-boot-spring.spec +++ b/u-boot-spring.spec @@ -27,10 +27,10 @@ %define udoo_spl 0 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-spring -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the spring arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" spring_defconfig diff --git a/u-boot-udoo.changes b/u-boot-udoo.changes index ecd5d81..2500665 100644 --- a/u-boot-udoo.changes +++ b/u-boot-udoo.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot-udoo.spec b/u-boot-udoo.spec index 563c4cf..392cfa6 100644 --- a/u-boot-udoo.spec +++ b/u-boot-udoo.spec @@ -27,10 +27,10 @@ %define udoo_spl 1 # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-udoo -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the udoo arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" udoo_defconfig diff --git a/u-boot.changes b/u-boot.changes index ecd5d81..2500665 100644 --- a/u-boot.changes +++ b/u-boot.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + ------------------------------------------------------------------- Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com diff --git a/u-boot.spec b/u-boot.spec index 248d993..d3ec6a2 100644 --- a/u-boot.spec +++ b/u-boot.spec @@ -19,10 +19,10 @@ # 'archive_version' differs from 'version' for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: Tools for the u-boot Firmware License: GPL-2.0 diff --git a/u-boot.spec.in b/u-boot.spec.in index 8a8dc64..6ac28d8 100644 --- a/u-boot.spec.in +++ b/u-boot.spec.in @@ -27,10 +27,10 @@ %define udoo_spl UDOO_SPL # archive_version differs from version for RC version only -%define archive_version 2016.05-rc1 +%define archive_version 2016.05-rc3 Name: u-boot-BOARDNAME -Version: 2016.05~rc1 +Version: 2016.05~rc3 Release: 0 Summary: The u-boot firmware for the BOARDNAME arm platform License: GPL-2.0 @@ -45,21 +45,6 @@ Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch # Fix exynos KVM support Patch3: 0003-exynos-Set-CNTFRQ.patch -# EFI fixes and ISO boot support -Patch4: 0004-iso-Make-little-endian-and-64bit-safe.patch -Patch5: 0005-iso-Start-with-partition-1.patch -Patch6: 0006-iso-Allow-512-byte-sector-size.patch -Patch7: 0007-efi_loader-Split-drive-add-into-function.patch -Patch8: 0008-efi_loader-Add-el-torito-support.patch -Patch9: 0009-efi_loader-Pass-file-path-to-payload.patch -Patch10: 0010-efi_loader-Increase-path-string-to-32-characters.patch -Patch11: 0011-distro-Enable-iso-partition-code.patch -Patch12: 0012-efi_loader-Use-system-fdt-as-fallback.patch -Patch13: 0013-efi_loader-Put-fdt-into-convenient-location.patch -Patch14: 0014-efi_loader-Expose-ascending-efi-memory-map.patch -Patch15: 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch -Patch16: 0016-efi_loader-Handle-memory-overflows.patch -Patch17: 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc @@ -98,20 +83,6 @@ This package contains documentation for u-boot firmware %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -%patch15 -p1 -%patch16 -p1 -%patch17 -p1 %build make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" BOARDCONFIG