1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873
|
u-boot (2019.01+dfsg-7) unstable; urgency=medium
[ Sunil Mohan Adapa ]
* Enable pine64-lts target in u-boot-sunxi (Closes: #928947).
[ Vagrant Cascadian ]
* u-boot-omap: Enable am335x_evm target.
* Add patches to enable PocketBeagle in am335x_evm target.
* u-boot-omap: Fix instructions for installing beaglebone black.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 13 May 2019 19:07:44 -0700
u-boot (2019.01+dfsg-6) unstable; urgency=medium
[ Domenico Andreoli ]
* Enable support for NanoPi NEO 2 in u-boot-sunxi (Closes: #928612).
[ Jonas Smedegaard ]
* Sync sunxi teres-i patch with mainline u-boot, enabling USB
support (Closes: #928815).
[ Vagrant Cascadian ]
* Apply patch from upstream fixing buffer overflow with ext4 filesystems
(CVE-2019-11059, Closes: #928800).
* Apply patch from upstream fixing randomly generated
UUIDs. (CVE-2019-11690, Closes: #928557).
-- Vagrant Cascadian <vagrant@debian.org> Sat, 11 May 2019 18:20:19 -0700
u-boot (2019.01+dfsg-5) unstable; urgency=medium
[ Jonas Smedegaard ]
* Add patch cherry-picked upstream to add i2c initialization for sun50i.
* Add patch by Vasily Khoruzhick to support Olimex Teres-I DIY laptop.
* Enable teres_i target in u-boot-sunxi (Closes: #926040).
[ Frédéric Danis ]
* Enable orangepi_zero_plus2 target in u-boot-sunxi (Closes: #927224).
-- Vagrant Cascadian <vagrant@debian.org> Fri, 19 Apr 2019 16:43:08 -0700
u-boot (2019.01+dfsg-4) unstable; urgency=medium
[ Martyn Welch ]
* [armhf] u-boot-imx: Enable build for NXP SABRE Lite.
[ Neil Armstrong ]
* [arm64] u-boot-amlogic: Enable nanopi-k2 and khadas-vim/vim2.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 08 Apr 2019 19:47:02 -0700
u-boot (2019.01+dfsg-3) unstable; urgency=medium
[ Romain Perier ]
* [armel] u-boot-rpi: Add Raspberry Pi Zero W.
[ Vagrant Cascadian ]
* [armhf] u-boot-sunxi: Add bananapi_m2_berry target.
(Closes: #923443) Thanks to Lucas Nussbaum.
* [armhf] u-boot-imx: Add novena-rawsd target.
* Add patches to fix SPI and USB on Dreamplug (Closes: #923379).
Thanks to Leigh Brown and Chris Packham.
* u-boot-tools: Remove Synopsys lintian override.
* Add patch to fix spelling of "mismatched".
* Add patch to fix spelling of "download".
-- Vagrant Cascadian <vagrant@debian.org> Thu, 28 Feb 2019 20:42:31 -0800
u-boot (2019.01+dfsg-2) unstable; urgency=medium
[ Frédéric Danis ]
* Enable libretech-cc target in u-boot-amlogic (Closes: #920947).
[ Vagrant Cascadian ]
* debian/patches: Add patch from upstream to unmount ext4 filesystems
preventing a memory leak.
* Add patch to fix console setting on exynos platforms. Thanks to
Dongjin Kim and Benjamin Drung. (Closes: #920116).
* Use wildcards for lintian overrides.
* Update tester for p2371-2180 (Jetson-TX1).
* Update tester for novena.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 19 Feb 2019 01:09:37 -0800
u-boot (2019.01+dfsg-1) unstable; urgency=medium
* New upstream release (Closes: #918940).
* Update tester for firefly-rk3288.
* debian/control: Build-Depends: use debhelper-compat.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 14 Jan 2019 16:36:19 -0800
u-boot (2019.01~rc3+dfsg-1) experimental; urgency=medium
* New upstream release candidate.
* Update upstream signing key format.
* Remove pinebook patches, applied upstream.
* Drop mipsel-native-endianness patch.
* [arm64] u-boot-amlogic: Update README for odroid-c2.
* [armhf] u-boot-rockchip: Add firefly-rk3288 target.
* debian/rules: Call strip --strip-unneeded and --remote-section=.note
to comply with Debian policy 4.3.0.
* debian/control: Update Standards-Version to 4.3.0.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 08 Jan 2019 15:42:38 -0800
u-boot (2018.11+dfsg-2) unstable; urgency=medium
* u-boot-install-sunxi64:
- Detect target based on running device-tree.
- Prefer BL31 from arm-trusted-firmware over atf-allwinner.
- Error out when mkimage is not found and Recommend u-boot-tools
(Closes: #913879). Thanks to Nicolas Schier.
* [arm64] u-boot-sunxi: Update Recommends to use arm-trusted-firmware
instead of atf-allwinner.
* [arm64] u-boot-amlogic: Add Recommends on arm-trusted-firmware.
* Update upstream signing key.
-- Vagrant Cascadian <vagrant@debian.org> Sun, 09 Dec 2018 08:16:44 +0100
u-boot (2018.11+dfsg-1) unstable; urgency=medium
* New upstream release.
* [armhf] u-boot-imx: Drop udoo patches, full support for distro_bootcmd
is enabled upstream.
* [armhf] u-boot-rockchip: Drop firefly-rk3288 target (Closes: #898520).
* [arm64] u-boot-sunxi: Enable a64-olinuxino target (Closes: #881564).
Thanks to Rodrigo Exterckötter Tjäder.
* Add Pinebook support patches from sunxi maintainer tree.
* [arm64] u-boot-sunxi: Add pinebook target.
* [armel] Drop openrd targets, which FTBFS and are orphaned upstream.
-- Vagrant Cascadian <vagrant@debian.org> Wed, 14 Nov 2018 13:32:35 -0800
u-boot (2018.09+dfsg-1) experimental; urgency=medium
* New upstream release.
* Remove patches applied upstream.
* Refresh udoo quad support patch.
* Increase verbosity of make unless DEB_BUILD_OPTIONS=terse.
* Update Standards-Version to 4.2.1.
* [armhf] u-boot-sunxi: Enable Sinovoip Banana Pi M3 (Closes: #905922).
Thanks to Bernhard.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 10 Sep 2018 23:59:21 -0700
u-boot (2018.07+dfsg-1) experimental; urgency=medium
* New upstream release.
* u-boot-imx: Remove mx6cuboxi4x4 target, as ram is now properly
detected with mx6cuboxi.
* debian/watch: Add repack and compression=xz options.
* debian/rules: Remove get-orig-source target.
* debian/control: Update Standards-Version to 4.1.5.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 09 Jul 2018 13:34:06 -0700
u-boot (2018.07~rc2+dfsg-1) experimental; urgency=medium
* New upstream release candidate:
- Fixes USB on Pine64+.
* [armhf] u-boot-sunxi: Enable A20-OLinuXino-Lime2-eMMC.
(Closes: #901666). Thanks to Andreas B. Mundt.
-- Vagrant Cascadian <vagrant@debian.org> Wed, 20 Jun 2018 23:47:25 -0700
u-boot (2018.07~rc1+dfsg-1) experimental; urgency=medium
* New upstream release candidate.
* Remove patches applied in 2018.07-rc1.
* Refresh sheevaplug/sys_thumb_build patch.
* Add Build-Depends on bison and flex.
* Update patch series for odroid distro_bootcmd support.
* Add patch submitted upstream to consistently set default fdtfile value
on rockchip systems.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 05 Jun 2018 15:07:35 -0700
u-boot (2018.05+dfsg-1) unstable; urgency=medium
* New upstream release.
* Refresh debian/patches for 2018.05.
* [armel] sheevaplug: Add patch to enable thumb build to reduce size of
u-boot.kwb (Closes: #897671).
* u-boot-rockchip: Add patch to fix serial output (Closes: #898276).
-- Vagrant Cascadian <vagrant@debian.org> Thu, 10 May 2018 13:24:57 -0700
u-boot (2018.05~rc3+dfsg-1) experimental; urgency=medium
* New upstream release candidate.
* Remove patches applied or obsoleted upstream:
- firefly/fdtfile
- odroid-c2/0001-mmc-avoid-division-by-zero-in-meson_mmc_config_clock
* Add patch to set timestamp and umask when building multi-dtb fit
image (Closes: #896526).
-- Vagrant Cascadian <vagrant@debian.org> Tue, 01 May 2018 14:48:55 -0700
u-boot (2018.05~rc2+dfsg-2) experimental; urgency=medium
* [arm64] Add u-boot-mvebu, and enable the espressobin target.
-- Vagrant Cascadian <vagrant@debian.org> Thu, 19 Apr 2018 15:10:58 -0700
u-boot (2018.05~rc2+dfsg-1) experimental; urgency=medium
* New upstream release candidate.
* Refresh patches:
- Makefile-add-kwb-target-to-all.patch
- am57xx/omap5_distro_bootcmd
* debian/control:
- Add Build-Depends for lzop, used on the AM57xx target.
- Update Standards-Version to 4.1.4, no changes.
* Install build configs to /usr/share/doc/*/configs.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 17 Apr 2018 16:05:55 -0700
u-boot (2018.03+dfsg1-2) unstable; urgency=medium
[ Riku Voipio ]
* u-boot-qcom: Add dragonboard 820c build (Closes: #894212).
[ Vagrant Cascadian ]
* u-boot-install-sunxi64: Ignore device write checks when FORCE is set.
* u-boot-exynos: Update odroid patch to support distro_bootcmd, dropping
support for legacy boot.
* Add back uboot.elf, used to install jetson-tx1 (Closes: #893908).
-- Vagrant Cascadian <vagrant@debian.org> Sun, 01 Apr 2018 18:20:06 -0700
u-boot (2018.03+dfsg1-1) unstable; urgency=medium
* New upstream release.
* Update patches for new upstream release.
* debian/rules: Update default configuration for tools target.
* [arm64] u-boot-rockchip: Add puma-rk3399 target.
* Switch Vcs-* to use salsa.debian.org.
* debian/rules: Fix typo that disabled 4GB ram support for the
mx6cuboxi4x4 target (Closes: #893062).
* Add patch to fix mmc support on Odroid-C2. Thanks to Jaehoon Chung and
Heinrich Schuchardt.
* u-boot-sunxi:
- Add u-boot-install-sunxi64 script (Closes: #891490). Thanks to Adam
Borowski.
- [arm64] Add recommends on atf-allwinner.
* debian/copyright: Updated location for libfdt.
* Drop installation of uboot.elf, as it is stripped of debugging symbols
and therefor not particularly useful.
-- Vagrant Cascadian <vagrant@debian.org> Sun, 18 Mar 2018 18:36:58 -0700
u-boot (2018.01+dfsg1-2) unstable; urgency=medium
* Update to use https copyright format URL.
* debian/rules: Remove "dh --parallel", default in debhelper compat 11.
* debian/patches:
- Remove patch for IGEP board that was never applied.
- Fix typo in mx6cubox-i4x4 patch description.
- Add description to no-force-cross-compile-powerpc patch.
- Add a description for the omap5_distro_bootcmd patch.
- Remove patch for hurd support, as no packages are built on that
hurd.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 20 Feb 2018 16:49:33 -0800
u-boot (2018.01+dfsg1-1) experimental; urgency=medium
* New upstream release.
* debian/patches: Refresh and removed.
* debian/control:
- Update to Standards-Version 4.1.3, no changes.
- Build-Depend on debhelper 11.
* debian/compat: Switch to debhelper compatibility level 11.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 08 Jan 2018 19:19:02 -0800
u-boot (2017.11+dfsg1-3) unstable; urgency=medium
[ Vagrant Cascadian ]
* Add patch submitted upstream to fix ethernet on Olimex
A20-Olinuxino-Micro Rev. J (Closes: #864562).
[ Marek Vasut ]
* Disable DDR calibration on DH iMX6 (Closes: #884442).
-- Vagrant Cascadian <vagrant@debian.org> Sun, 07 Jan 2018 14:19:18 -0800
u-boot (2017.11+dfsg1-2) unstable; urgency=medium
[ Vagrant Cascadian ]
* u-boot-tools: Fix broken FIT image generation by building tools-only
target with an empty defconfig.
* Run basic tests for mkimage/dumpimage.
[ Marek Vasut ]
* Backport DH iMX6 DDR configuration fix (Closes: #882123).
[ Vagrant Cascadian ]
* debian/control: Bump Standards-Version 4.1.2, no changes.
* debian/rules: Use dpkg/architecture.mk instead of manually calling
dpkg-architecture.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 05 Dec 2017 15:43:23 -0800
u-boot (2017.11+dfsg1-1) experimental; urgency=medium
[ Vagrant Cascadian ]
* Remove patches applied upstream.
* Refresh patches.
* Drop beaglebone black patch for usb-mass-storage.
[ Marek Vasut ]
* Add DHCOM i.MX6 PDK board support (Closes: #881298).
[ Vagrant Cascadian ]
* u-boot-sunxi: Include documentation for pine64 using u-boot SPL
(Closes: #842688).
* u-boot-rockchip: Include rk3399-firefly.dtb instead of generic
u-boot.dtb file.
-- Vagrant Cascadian <vagrant@debian.org> Fri, 17 Nov 2017 12:02:57 -0800
u-boot (2017.09+dfsg1-3) unstable; urgency=medium
* Set the fdtfile variable from the value of CONFIG_DEFAULT_DEVICE_TREE
(Closes: #870897). Thanks to Diego Roversi for the bug report!
* Add patch to fix building jffs2 with gcc-7 (Closes: #877963). Thanks
to Adrian Bunk!
* Update Standards-Version of Debian Policy 4.1.1, no changes needed.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 09 Oct 2017 15:14:03 -0700
u-boot (2017.09+dfsg1-2) unstable; urgency=medium
* u-boot-imx: mx6cuboxi4x4: Use a symlink for u-boot.img to mx6cuboxi,
as it is identical.
* u-boot-imx/u-boot-omap: Do not install spl/u-boot-spl.bin when the
target uses SPL or MLO.
* debian/rules: Generate mx6cuboxi4x4_defconfig based on
mx6cuboxi_defconfig.
* debian/rules: Do not install uboot.elf in mx6cuboxi4x4 target.
* debian/rules: Only build the SPL target on mx6cuboxi4x4.
* debian/patches: Fix odroid patch to actually use distro_bootcmd.
* u-boot-rockchip: Fix USB on firefly-rk3399 with patches from upstream.
* u-boot-exynos: Add patch to fix "console" environment variable
(Closes: #877074). Thanks to Peter Lebbing!
-- Vagrant Cascadian <vagrant@debian.org> Thu, 05 Oct 2017 16:09:47 -0700
u-boot (2017.09+dfsg1-1) experimental; urgency=medium
* New upstream release.
* Refreshed patches for new upstream version.
* Update check for generating u-boot.rksd.
* [armhf] u-boot-omap: Update to use igep00x0 target, which replaced
igep0020.
* debian/rules:
- Use pkg-info.mk from dpkg-dev to set SOURCE_DATE_EPOCH and get the
package version.
- Switch "env" target to "envtools".
-- Vagrant Cascadian <vagrant@debian.org> Tue, 12 Sep 2017 13:19:29 -0700
u-boot (2017.07+dfsg1-3) unstable; urgency=medium
* u-boot-rockchip:
- Generate u-boot.rksd used for firefly-rk3288 installation.
- Add README.Debian describing how to install firefly-rk3288.
-- Vagrant Cascadian <vagrant@debian.org> Fri, 04 Aug 2017 15:56:56 -0400
u-boot (2017.07+dfsg1-2) unstable; urgency=medium
* u-boot-rockchip:
- Ship u-boot.bin in firefly-rk3288 instead of u-boot.img.
- Add NEWS file explaining the change for firefly-rk3288.
* u-boot-imx:
- mx6cuboxi: Add patch from upstream to support SATA.
- Add patch to enable booting from SATA on wandboard.
* u-boot-tools:
- Install upstream fw_env.config, which includes several
well-commented examples.
* Consistantly use dd with conv=fsync,notrunc in Debian README files
(Closes: #864742). Thanks to Heinrich Schuchardt.
* debian/control:
- Update to Standards-Version 4.0.0.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 01 Aug 2017 17:10:48 -0400
u-boot (2017.07+dfsg1-1) unstable; urgency=medium
* New upstream release.
* debian/patches:
- Refresh am57xx/omap5_distro_bootcmd.
- Refresh distro_bootcmd patches for am57xx and odroid.
- Sync mx6cuboxi4x4 patch with mx6cuboxi.
* u-boot-sunxi: Install README.sunxi64.
* [arm64] u-boot-sunxi: Install additional pine64 targets needed to
manually build an SPL image.
* [arm64] u-boot-rockchip: Add firefly-rk3399 target.
* [armhf] Add Build-Depends on libpython-dev:native and swig.
* [arm64] Add build-depends on libpython-dev:native, python and swig.
* debian/rules: Split generation of rksd images into script, supporting
generation for both rk3288 and rk3399 systems.
* debian/copyright: Remove entries from Files-Excluded no longer present
upstream.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 10 Jul 2017 12:46:22 -0700
u-boot (2017.05+dfsg1-1) experimental; urgency=medium
* New upstream release.
* Remove patches, applied upstream:
- odroid-c2/0001-meson-gxbb-enable-MMC-as-boot-target.patch
- odroid-c2/0002-meson-gxbb-change-ramdisk_addr_r.patch
* Refresh patches:
- am57xx/omap5_distro_bootcmd
- n900-bootz-raw-initrd.diff
* Split Build-Depends into multiple lines.
* Add dependencies for cross-building arm64, armhf and armel.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 08 May 2017 17:17:42 -0700
u-boot (2017.05~rc2+dfsg1-1) experimental; urgency=medium
* New upstream release candidate.
* Remove patches applied upstream:
- mx6cuboxi/serial_console_speed
- Makefile-Fix-linking-with-modern-binutils
* Refresh patches:
- am57xx/omap5_distro_bootcmd
- arndale/board-spl-rule
* [arm64] Add u-boot-amlogic
- Enable the odroid-c2 target.
- Add patches:
+ Enable MMC boot on odroid-c2.
+ Fix ramdisk load address on odroid-c2.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 18 Apr 2017 20:24:42 -0700
u-boot (2017.05~rc1+dfsg1-1) experimental; urgency=medium
* New upstream release candidate.
* Refresh patches:
- beagleboneblack usb-mass-storage.
- mx6cuboxi4x4.
- Update am57xx distro_bootcmd patch and also fix for dra7xx_evm.
* Remove patches applied upstream:
- orangepi_zero
- openrd
* Add patches from upstream:
- Fix building with binutils.
* Update lintian overrides with openrd targets.
-- Vagrant Cascadian <vagrant@debian.org> Wed, 12 Apr 2017 10:47:29 -0700
u-boot (2016.11+dfsg1-4) unstable; urgency=medium
[ Vagrant Cascadian ]
* [armel] Apply a patch from upstream to fix openrd targets which failed
to boot, and re-enable the openrd targets (Closes: #856441). Thanks to
Albert ARIBAUD for the patch, Martin Michlmayr for pointing out the
patch, and Phil Hands and Rick Thomas for testing on various openrd
platforms.
[ Martin Michlmayr ]
* u-boot-rpi: typo in README.Debian (Closes: #858574).
-- Vagrant Cascadian <vagrant@debian.org> Mon, 27 Mar 2017 14:39:51 -0400
u-boot (2016.11+dfsg1-3) unstable; urgency=medium
[ Peter Michael Green ]
* u-boot-imx: Add patch to add an mx6cuboxi4x4 target, supporting boards
with 4GB of ram (Closes: #848911).
[ Vagrant Cascadian ]
* u-boot-sunxi: Add patches to support orangepi_zero.
(Closes: #848557). Thanks to Mateusz Łukasik.
* Add Rick Thomas to mx6cuboxi testers.
-- Vagrant Cascadian <vagrant@debian.org> Wed, 21 Dec 2016 20:44:44 -0800
u-boot (2016.11+dfsg1-2) unstable; urgency=medium
* u-boot-sunxi: Add nanopi_neo target.
Thanks to Paul Tagliamonte. (Closes: #845932).
-- Vagrant Cascadian <vagrant@debian.org> Fri, 16 Dec 2016 14:10:52 +0100
u-boot (2016.11+dfsg1-1) unstable; urgency=medium
* New upstream release.
* Remove mksunxiboot-spl patch, applied upstream.
* Refresh patches.
* Enable Cubieboard4 target.
* Remove patches for ram detection on rk3288, applied upstream.
-- Vagrant Cascadian <vagrant@debian.org> Thu, 17 Nov 2016 11:10:12 -0800
u-boot (2016.11~rc2+dfsg1-1) experimental; urgency=medium
* New upstream release candidate.
* Refresh patch for am57xx to use distro_bootcmd support.
* Remove patches from 2016.09.01, applied upstream.
* Add patches to enable ram detection on rockchip rk3288 platforms.
* Update lintian overrides for openrd removal.
-- Vagrant Cascadian <vagrant@debian.org> Thu, 27 Oct 2016 11:25:47 -0700
u-boot (2016.09+dfsg1-2) unstable; urgency=medium
* odroid-xu3: Add patch to use the default bootdelay from
distro_bootcmd.
* Remove Philip Rinn from Cubieboard2 testers.
* u-boot-rpi: Add documentation for configuring raspberry pi to use
u-boot.
* debian/watch: Add signature checking of upstream tarball.
* u-boot-tools: Add device-tree-compiler to Recommends. Thanks to
Pierre-Hugues Husson. (Closes: #841351).
* Apply patches from v2016.09.01:
- 0001-Revert-Increase-default-of-CONFIG_SYS_MALLOC_F_LEN-f.patch
- 0002-Revert-image-fit-switch-ENOLINK-to-ENOENT.patch
* Remove openrd targets, as they do not boot (Closes: #837629).
-- Vagrant Cascadian <vagrant@debian.org> Sun, 23 Oct 2016 19:36:36 -0700
u-boot (2016.09+dfsg1-1) unstable; urgency=medium
* New upstream version.
[ Vagrant Cascadian ]
* Remove Ian Campbell from the list of arndale testers.
* Remove Joey Hess from the A10-OLinuXino-Lime testers.
* [armhf] u-boot-sunxi: Enable the CHIP target.
* Refresh and remove patches applied upstream.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 12 Sep 2016 12:43:29 -0700
u-boot (2016.09~rc2+dfsg1-1) experimental; urgency=medium
[ Vagrant Cascadian ]
* New upstream release candidate.
* Simplify cross-building in debian/rules.
* Refresh debian/patches/tools-only-in-no-dot-config-targets.diff
* u-boot-omap:
- Add omap3_pandora target.
- Add patches to switch omap3-pandora to use distro bootcmd.
* Add patches from upstream to fix cache issues.
[ Martin Michlmayr ]
* Generate bootable image for DragonBoard 410c (Closes: #835656).
[ Vagrant Cascadian ]
* [arm64] Fix cross-building of DragonBoard 410c:
- Allow skales:native to satisfy build-dependency.
- Add build-depends on libfdt-dev:native.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 30 Aug 2016 11:36:35 -0700
u-boot (2016.09~rc1+dfsg1-1) experimental; urgency=medium
* New upstream release candidate.
* Remove patches applied upstream.
* Remove redundant u-boot-rockchip.docs, as it is handled in the
u-boot-rockchip.install file.
* u-boot-sunxi: Install README for pine64 target.
* Add build-depends on python:any [armhf], which is now required to
build the firefly-rk3288 target.
* Fix build of firefly-rk3288 target, which now uses u-boot-spl.bin to
generate rksd image.
* Build u-boot.img and u-boot.bin instead of deprecated u-boot-dtb.*
targets.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 01 Aug 2016 00:42:12 -0700
u-boot (2016.07~rc3+dfsg1-2) experimental; urgency=medium
* [armel] Apply patch from upstream that fixes FTBFS on openrd variants.
(Closes: #830169).
-- Vagrant Cascadian <vagrant@debian.org> Thu, 07 Jul 2016 11:17:30 +0200
u-boot (2016.07~rc3+dfsg1-1) experimental; urgency=medium
* New upstream release candidate.
[ Vagrant Cascadian ]
* u-boot-sunxi: Enable on arm64.
* u-boot-sunxi: Enable pine64_plus target on arm64.
* Remove reproducibility patches, applied upstream.
[ Ricardo Salveti ]
* [arm64] Add u-boot-qcom package and enable dragonboard410c target
(Closes: #824955).
* Add patch submitted upstream "dragonboard410c: adding missing default
addr for script and pxe boot."
* Add patch submitted upstream "dragonboard410c: prefer sdcard boot over
emmc"
-- Vagrant Cascadian <vagrant@debian.org> Tue, 05 Jul 2016 12:34:49 +0200
u-boot (2016.07~rc1+dfsg1-3) experimental; urgency=medium
[ Martin Michlmayr ]
* Add NVIDIA to Tegra description
* u-boot-tegra.README.Debian: fix name of package
* u-boot-tegra.README.Debian: improve Jetson TK instructions.
(Closes: #827081).
[ Vagrant Cascadian ]
* debian/control: u-boot-tools is not needed when cross-building on
arm64.
* Add patch to respect SOURCE_DATE_EPOCH when building FIT images,
fixing reproducibility issues with dra7xx_evm target. Thanks to HW42
for the patch.
-- Vagrant Cascadian <vagrant@debian.org> Thu, 16 Jun 2016 12:29:51 -0700
u-boot (2016.07~rc1+dfsg1-2) experimental; urgency=medium
* u-boot-tegra: Only install p2371-2180 symlink on arm64.
(Closes: #826905). Thanks to Martin Michlmayr for the report!
* Add patch to fix reproducibility issues with ld and some
locales. Thanks to HW42!
-- Vagrant Cascadian <vagrant@debian.org> Sun, 12 Jun 2016 06:15:22 -0700
u-boot (2016.07~rc1+dfsg1-1) experimental; urgency=medium
* New upstream release candidate.
[ Martin Michlmayr ]
* u-boot-tegra:
- Add Jetson TX1 (P2371-2180) target (Closes: #825458).
- Add arm64 arch.
- Update README.Debian for Jetson TX1.
[ Vagrant Cascadian ]
* u-boot-omap: Update use dra7xx_evm target.
* u-boot-imx: Remove patch to us private libgcc on imx systems.
* u-boot-exynos:
- Refresh odroid distro_bootcmd patch.
- Increase default environment size on odroid-u3 to support
distro_bootcmd.
* u-boot-sunxi: Enable Cubietruck_plus target.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 07 Jun 2016 12:04:16 -0700
u-boot (2016.05+dfsg1-1) experimental; urgency=medium
* New upstream version.
[ Ryan Finnie ]
* u-boot-rpi: Add rpi_3, rpi_3_32b target (Closes: #823524).
* u-boot-rpi: Add arm64 arch.
[ Vagrant Cascadian ]
* Remove patches applied upstream:
- Revert-ti_armv7_common.h-Fix-U-Boot-location-on-eMMC.patch
- Revert-rockchip-rk3288-correct-sdram-setting.patch
- odroid-Update-README-with-correct-firmware-link-and-.patch
-- Vagrant Cascadian <vagrant@debian.org> Tue, 17 May 2016 13:03:11 -0700
u-boot (2016.05~rc3+dfsg1-1) experimental; urgency=medium
* New upstream release candidate.
* Update debian/patches for 2016.05-rc3.
* u-boot-rockchip:
- Revert upstream patch to fix detected ram size on Firefly boards.
* u-boot-imx:
- Add patch to fix FTBFS by using u-boot's private libgcc.
* u-boot-tools:
- Add fw_env.config for openrd (Closes: #821056).
Thanks to Rick Thomas.
* u-boot-omap:
- Revert upstream patch changing the default offsets for loading
u-boot from eMMC.
* u-boot-exynos:
- Add odroid-xu3 target, tested on Odroid-XU4.
- Add patch from upstream with updated documentation about Odroid-XU4
target.
-- Vagrant Cascadian <vagrant@debian.org> Sat, 30 Apr 2016 18:53:04 -0700
u-boot (2016.03+dfsg1-6) unstable; urgency=medium
[ Vagrant Cascadian ]
* u-boot-tegra: Only install p2371-2180 symlink on arm64.
(Closes: #826905). Thanks to Martin Michlmayr for the report!
* Add patch to fix reproducibility issues with ld and some
locales. Thanks to HW42!
[ Martin Michlmayr ]
* Add NVIDIA to Tegra description
* u-boot-tegra.README.Debian: fix name of package
* u-boot-tegra.README.Debian: improve Jetson TK instructions.
(Closes: #827081).
[ Vagrant Cascadian ]
* Apply patch from upstream to fix volatages used on several OlinuXino
Lime board variants (Closes: #825214). Thanks to Karsten Merker for
tracking down the patch!
-- Vagrant Cascadian <vagrant@debian.org> Tue, 28 Jun 2016 09:38:27 +0200
u-boot (2016.03+dfsg1-5) unstable; urgency=medium
[ Vagrant Cascadian ]
* Add patches from upstream to detect fdtfile on am57xx, and update
distro_bootcmd patch accordingly.
* u-boot-tools: Add fw_env.config for openrd (Closes: #821056). Thanks
to Rick Thomas.
* u-boot-omap: Add support for dra74_evm (Closes: #824730). Thanks to
Ben Hutchings.
* Added odroid-xu3 target, tested on Odroid-XU4.
[ Gerald Kerma ]
* Correct the guruplug.config to match the new upstream env address.
(Closes: #781873).
[ Vagrant Cascadian ]
* u-boot-exynos: Add patch to support distro_bootcmd on odroid target.
[ Martin Michlmayr ]
* u-boot-tegra: Add Jetson TX1 (P2371-2180) target (Closes: #825458).
* u-boot-tegra: Add arm64 arch.
* u-boot-tegra: Update README.Debian for Jetson TX1.
-- Vagrant Cascadian <vagrant@debian.org> Sun, 29 May 2016 14:29:59 -0700
u-boot (2016.03+dfsg1-4) unstable; urgency=medium
* Add patch to fix detected ram size on Firefly boards by reverting
"rockchip: rk3288: correct sdram setting".
* debian/control: Updated Standards-Version to 3.9.8, no changes needed.
-- Vagrant Cascadian <vagrant@debian.org> Sat, 16 Apr 2016 15:33:22 -0700
u-boot (2016.03+dfsg1-3) unstable; urgency=medium
* u-boot-omap:
- Remove ti-u-boot patches, which are no longer needed.
- Update am57xx support for distro bootcmd.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 04 Apr 2016 11:23:06 -0700
u-boot (2016.03+dfsg1-2) unstable; urgency=medium
* Apply patch from upstream to fix gmac ethernet on sunxi
systems. (Closes: #818621). Thanks to Karsten Merker for the report.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 28 Mar 2016 19:52:45 -0700
u-boot (2016.03+dfsg1-1) unstable; urgency=medium
* New upstream release.
* Remove Firefly-RK3288 patch applied upstream.
* debian/control:
- Update to use https for Vcs-Git and Vcs-Browser.
- Update to Standards-Version 3.9.7, no changes needed.
* Update lintian overrides to ignore a company named Synopsys listed in
debian/copyright, which is flagged as a misspelling.
* Add patches to fix mispellings for "comment", "supported" and
"transferred".
-- Vagrant Cascadian <vagrant@debian.org> Tue, 15 Mar 2016 14:53:55 -0700
u-boot (2016.03~rc3+dfsg1-1) experimental; urgency=medium
* New upstream release candidate.
* Add patch submitted upstream to fix Firefly-RK3288 SPL by disabling
eMMC feature in SPL.
* u-boot-sunxi: Drop FEL targets, as moderm versions of sunxi-tools
support loading u-boot-sunxi-with-spl.bin directly.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 08 Mar 2016 13:28:50 -0800
u-boot (2016.03~rc2+dfsg1-1) experimental; urgency=medium
* New upstream release candidate.
* Remove patches applied upstream.
* Refresh patches:
- Makefile-add-kwb-target-to-all.patch
- 0001-Makefile-Include-vendor-common-library-in-include-se.patch
- udoo_quad-support.patch
-- Vagrant Cascadian <vagrant@debian.org> Tue, 16 Feb 2016 15:01:48 -0800
u-boot (2016.01+dfsg1-2) unstable; urgency=medium
* u-boot-omap:
- Include patches from ti-u-boot to support AM57xx boards.
- Add patch for AM57xx boards to boot using distro bootcmd.
- Add am57xx_evm target, used by the BeagleBoard-X15.
* Apply patches from upstream to fix OpenRD builds with
GCC-5. Thanks to Albert ARIBAUD. (Closes: #811129)
* u-boot-imx: Apply patch "wandboard: fix variable name so PXE boot
works" from upstream.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 08 Feb 2016 20:14:04 -0800
u-boot (2016.01+dfsg1-1) unstable; urgency=medium
* u-boot-sunxi: Enable orangepi_plus target.
* Remove patch Switching novena to config_distro_bootcmd, applied
upstream.
* armel: Enable openrd_base, openrd_client and openrd_ultimate
targets. Thanks to Albert ARIBAUD, Rick Thomas and Philip Hands for
testing. (Closes: #810790)
* Add Rick Thomas as a sheevaplug tester.
* sheevaplug: Update env documentation to default to current u-boot
offsets. (Closes: #781874)
* Bump versioned dependencies on debhelper and dpkg-dev to support use
of build profiles.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 12 Jan 2016 11:48:34 -0800
u-boot (2016.01~rc3+dfsg1-3) experimental; urgency=medium
* u-boot-rockchip: Generate rksd images.
* u-boot-rockchip: Build u-boot-dtb.img instead of u-boot.img.
* Add u-boot-rpi package for Raspberry pi systems:
- [armel] Include rpi target.
- [armhf] Add rpi_2 target.
-- Vagrant Cascadian <vagrant@debian.org> Sat, 02 Jan 2016 15:19:11 -0800
u-boot (2016.01~rc3+dfsg1-1) experimental; urgency=medium
* New upstream release candidate.
- Fixes eMMC boot selection on BeagleBone Black.
* Add patch to fix missing bootdelay on am335x.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 22 Dec 2015 18:20:52 -0800
u-boot (2016.01~rc2+dfsg1-1) experimental; urgency=medium
* New upstream release candidate:
- Remove patches applied upstream.
- Refresh patches:
+ arndale/board-spl-rule.diff
+ beagleboneblack/usb-mass-storage.patch
+ 0001-arm-novena-Switch-novena-to-config_distro_bootcmd.patch
* u-boot-tools:
- Install man page for kwboot.
- Add dumpimage command (Closes: #807174).
- strip mkenvimage.
-- Vagrant Cascadian <vagrant@debian.org> Sat, 12 Dec 2015 19:00:32 -0800
u-boot (2015.10+dfsg1-4) unstable; urgency=medium
* Fix reproducibility issue with targets listed in package descriptions
by always sorting using C locale.
* u-boot-imx: Updates to novena patches:
- Sync with submitted patch for distro_bootcmd support.
- Add upstream patch to fix USB support.
- Add upstream patch to enable loading u-boot.img from EXT
filesystems.
* Add upstream patches to fix mkimage support for multi and script
images (Closes: #805434).
-- Vagrant Cascadian <vagrant@debian.org> Tue, 08 Dec 2015 08:59:47 -0800
u-boot (2015.10+dfsg1-3) unstable; urgency=medium
* u-boot-install-targets: Add support to install documentation.
* u-boot-exynos: Install README.odroid.
* u-boot-rockchip: Install README.rockchip.
* u-boot-omap: Install README.nokia_rx51.
* Add included platforms to u-boot package descriptions.
* u-boot-sunxi: Enable the A10s-OLinuXino-M target. Thanks to Benedikt
Wildenhain (Closes: #806151).
* u-boot-imx: Add novena patches to include fdtfile variable, and load
fdt file into correct address.
* u-boot-sunxi: Backport patches from upstream to enable the Lamobo_R1
target.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 24 Nov 2015 14:14:29 -0800
u-boot (2015.10+dfsg1-2) unstable; urgency=medium
* Add missing content to u-boot-rockchip package.
* Update wandboard and mx6cuboxi patches to use config_distro_bootcmd
patches from u-boot-imx.
* Patch mx6cuboxi to specify the baudrate in the console setting.
* Update BeagleBone Black patches to use config_distro_bootcmd from
upstream.
* Patch to switch novena to use distro_bootcmd.
-- Vagrant Cascadian <vagrant@debian.org> Sat, 14 Nov 2015 09:22:47 -0600
u-boot (2015.10+dfsg1-2~exp1) experimental; urgency=medium
* Build rockchip package, with firefly-rk3288 as the initial
target. Thanks to Emilio Pozuelo Monfort and Sjoerd Simons.
(Closes: #803166).
-- Vagrant Cascadian <vagrant@debian.org> Mon, 02 Nov 2015 07:59:36 -0800
u-boot (2015.10+dfsg1-1) unstable; urgency=medium
[ Vagrant Cascadian ]
* New upstream version.
* Remove patch to fix variation caused by timezone differences, applied
upstream.
* Add patch to use a relative path to include the sunxi spl header,
which allows mksunxiboot to build on any architecture. Thanks to Ian
Campbell for the initial patch!
* Add patch from upstream to fix non-Android booting with ramdisk and/or
device tree.
[ Karsten Merker ]
* u-boot-sunxi: Enable the A20-Olimex-SOM-EVB target (Closes: #803335).
-- Vagrant Cascadian <vagrant@debian.org> Thu, 29 Oct 2015 13:35:23 -0700
u-boot (2015.10~rc4+dfsg1-1) unstable; urgency=medium
* New upstream release candidate.
* Updated udoo patches and debian/targets, upstream switched to a single
target that supports both udoo quad and dual.
* u-boot-sunxi: Add Linksprite_pcDuino target (Closes: #799035). Thanks
to Robert Hegner for testing!
* Refreshed patches for beaglebone black.
* Add patch to fix build variation based on timezone, by removing call
to "mktime".
* debian/copyright: Updated new locations for exynos files.
-- Vagrant Cascadian <vagrant@debian.org> Wed, 30 Sep 2015 12:00:30 -0700
u-boot (2015.10~rc2+dfsg1-1) experimental; urgency=medium
* New upstream release candidate.
* Install mkenvimage. Patch from Ubuntu.
* Refreshed patches for arndale, beaglebone black, and mx53loco.
* Remove reproducibility patch, applied upstream.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 01 Sep 2015 17:10:40 -0500
u-boot (2015.07+dfsg1-1) unstable; urgency=medium
[ Jochen Sprickerhof ]
* u-boot-sunxi: enable Mini-X target (Closes: #787266).
[ Ian Campbell ]
* Add support for Tegra Jetson TK-1 (Closes: #788689)
[ Vagrant Cascadian ]
New upstream version:
* mx6cuboxi:
- Remove patches applied upstream.
- Refresh distro bootcmd patch.
* wandboard:
- Remove wandboard SPL patch, applied upstream.
- Refresh distro bootcmd patch.
* beagleboneblack:
- Refresh distro bootcmd patch.
* udoo_quad:
- Refresh support patch.
* Drop no-error-on-set-but-unused-variable patch, no longer relevent.
* Add patch to ensure that CONFIG_SANDBOX is set when running "make env".
* Use patch applied upstream to use SOURCE_DATE_EPOCH when set.
* debian/rules: Use the Date from debian/changelog to set
SOURCE_DATE_EPOCH.
* Add example fw_env.config for mx6cuboxi (Closes: #786877).
* Add example fw_env.config for wandboard.
* Add Build-Depends on dpkg-dev (>= 1.17.0), as debian/rules uses
"dpkg-parsechangelog --show-field" introduced in that
version. (Closes: #768099).
* debian/watch: Update to use ftp server.
-- Vagrant Cascadian <vagrant@debian.org> Sat, 01 Aug 2015 07:29:07 -0700
u-boot (2015.04+dfsg1-2) unstable; urgency=medium
[ Joost van Zwieten ]
* u-boot-exynos: Enable odroid target.
[ Vagrant Cascadian ]
* u-boot-imx/mx6cuboxi:
+ Add patches to enable HDMI and USB support.
+ Add patches to fix Ethernet PHY detection.
* u-boot-imx/wandboard: Add patch from u-boot-imx to build a single SPL
target for all variants.
[ Robert Nelson ]
* u-boot-omap: Include u-boot.img instead of u-boot.bin for igep0020,
omap3_beagle and omap4_panda.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 25 May 2015 20:36:37 -0700
u-boot (2015.04+dfsg1-1) experimental; urgency=medium
[ Ian Campbell ]
* u-boot-exynos: Fix conflict between arndale and sunxi spl
targets.
* u-boot-sunxi: Update sunxi FEL target.
[ Vagrant Cascadian ]
* u-boot-imx:
+ Add usbarmory target.
+ Add novena target.
+ Add patches from u-boot-imx to support Cubox-i and Hummingboard and
drop old cubox-i patches.
+ Add mx6cuboxi target.
+ mx6cuboxi: Add patch to use config_distro_bootcmd.
+ wandboard: Add patch to use config_distro_bootcmd and remove old
environment patches.
* u-boot-omap:
+ am335x_boneblack: Remove patch to set voltage.
+ am335x_boneblack: Add patch to use config_distro_bootcmd and remove
old patches.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 27 Apr 2015 14:54:44 -0700
u-boot (2015.04~rc5+dfsg1-1) experimental; urgency=medium
[ John Paul Adrian Glaubitz ]
* [sh4] Fix FTBFS due to incorrect target names (Closes: #780066).
[ Vagrant Cascadian ]
* [armel] Use "rpi" for the Raspberry pi target, as it was renamed
upstream.
* [armel] Remove openrd_ultimate target, which fails to build upstream.
* [armel] Remove obsolete mmc guruplug and openrd patches.
* [armhf] Remove arndale patches, applied upstream.
* Fix cross-building of u-boot-tools (Closes: #775614).
* [armhf] u-boot-sunxi: Enable A20-OLinuXino_MICRO. Thanks to Arne
Ploese for testing!
* [armhf] u-boot-sunxi: Enable Linksprite_pcDuino3. Thanks to Patrice Go
for testing!
-- Vagrant Cascadian <vagrant@debian.org> Tue, 07 Apr 2015 13:58:39 -0700
u-boot (2015.04~rc3+dfsg1-1) experimental; urgency=medium
* New upstream release candidate.
* Remove patches applied upstream:
- ti_armv7_common-support_raw_initrd.diff
* Refresh patches:
- cubox-i/cubox-i-support.diff
- mipsel-native-endianness.diff
- mx53loco
- openrd-mmc.diff
- series
- wandboard/wandboard-uEnv.txt-bootz-n-fixes.patch
- guruplug_mvfs_and_mmc.diff
* Add patch to enable USB mass-storage support for the BeagleBone Black:
- beagleboneblack/usb-mass-storage.patch
* debian/rules: Add get-orig-source target.
* Disable patches that fail to apply:
- cubox-i/imx6-spl-support.diff
- arndale/exynos-Enable-config_distro_defaults.h.patch
- arndale/exynos5-Use-config_distro_bootcmd.h.patch
* Disable cubox-i build target and patches, as it fails to build.
-- Vagrant Cascadian <vagrant@debian.org> Sun, 08 Mar 2015 12:15:59 -0700
u-boot (2014.10+dfsg1-5) unstable; urgency=medium
[ John Paul Adrian Glaubitz ]
* [sh4] Fix FTBFS due to incorrect target names (Closes: #780066).
[ Vagrant Cascadian ]
* [armhf] u-boot-sunxi: Enable A20-OLinuXino_MICRO. Thanks to Arne
Ploese for testing!
* [armhf] u-boot-sunxi: Enable Linksprite_pcDuino3. Thanks to Patrice Go
for testing!
-- Vagrant Cascadian <vagrant@debian.org> Tue, 07 Apr 2015 13:42:30 -0700
u-boot (2014.10+dfsg1-4) unstable; urgency=medium
[ Karsten Merker ]
* Backport support for the LeMaker Banana Pro board (Closes: #779908).
[ Vagrant Cascadian ]
* Update lintian rules for BananaPro and A20-OlinuXino-LIME2.
-- Vagrant Cascadian <vagrant@debian.org> Sun, 08 Mar 2015 11:13:07 -0700
u-boot (2014.10+dfsg1-3) unstable; urgency=medium
* cubox-i-support.diff: Refresh patch, dropping solidrun.bmp, which
causes FTBFS with newer version of patch (Closes: #777518).
* Add patch to support A20-OLinuXino-LIME2, backported from u-boot
2015.01. Thanks to Karsten Merker for the patch (Closes: #777466).
-- Vagrant Cascadian <vagrant@debian.org> Sat, 21 Feb 2015 13:13:31 -0800
u-boot (2014.10+dfsg1-2.1) unstable; urgency=medium
* Non-maintainer upload.
* debian/patches:
- Add sh4-fix-linker-name-prefix.patch to use the proper
linker name prefix on sh4. Fixes FTBFS. (Closes: #771747)
-- John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Thu, 11 Dec 2014 00:00:08 +0100
u-boot (2014.10+dfsg1-2) unstable; urgency=medium
[ Steve Langasek ]
* Resync cubox-i patches with github.
- fixes support for booting on the cubox-i2ultra/i2ex.
(Closes: #766266)
[ Vagrant Cascadian ]
* wandboard, cubox-i: Add patches to use variables expected by
debian-installer bootscript.
* cubox-i: Move importing bootenv before loading the boot script, to
allow environment variables useful to the boot script to be set.
* cubox-i: Run autodetectfdt before attempting to load the boot script.
* Split README.Debian by subarchitecture, and document installing u-boot
on several additional boards.
-- Vagrant Cascadian <vagrant@debian.org> Sat, 01 Nov 2014 16:33:33 -0700
u-boot (2014.10+dfsg1-1) unstable; urgency=medium
[ Vagrant Cascadian ]
* New upstream release.
* Refresh cubox-i patches to 2014.10.
* Update cubox-i patches to use generic board.
* Remove debian/patches/kerma-sheevaplug-mvsata.diff, merged upstream.
* Patch to allow tools-only to build without a configuration.
* Update Standards-Version to 3.9.6, no changes needed.
[ Ian Campbell ]
* Rebase arndale patches onto 2014.10
-- Vagrant Cascadian <vagrant@debian.org> Sun, 19 Oct 2014 11:34:39 -0700
u-boot (2014.10~rc3+dfsg1-2) experimental; urgency=medium
[ Ian Campbell ]
* Add support for the Arndale board (Closes: #763186).
-- Vagrant Cascadian <vagrant@debian.org> Thu, 09 Oct 2014 11:41:31 -0700
u-boot (2014.10~rc3+dfsg1-1) unstable; urgency=medium
* New upstream release candidate.
* Remove patches applied upstream:
- bootcmd-scsi-scan-before-scsi.patch
- sunxi/0001-sun7i-Add-support-for-Olimex-A20-OLinuXino-LIME.patch
* Refresh patches:
- am335x-bootscript.diff
- am335x-uenv.txt.diff
- cubox-i/cubox-i-support.diff
- no-force-CROSS_COMPILE-powerpc.diff
-- Vagrant Cascadian <vagrant@debian.org> Wed, 08 Oct 2014 09:57:35 -0700
u-boot (2014.10~rc2+dfsg1-2) unstable; urgency=medium
[ Héctor Orón Martínez ]
* Fix cross building.
* Build extra tools for kirkwood and sunxi (Closes: #750108).
* Build extra tools and env just once, and install in PATH again.
* Add nitrogen6q support to u-boot-imx.
[ Vagrant Cascadian ]
* Use "make all" instead of making individual targets, recording a list
of targets to install in each subarch package.
* Build FEL variants for all sunxi platforms, based on patches from Ian
Campbell.
* Add build-depends on "bc".
* Patch to add the debian revision to the U-boot version.
* Updated cubox-i patches and re-enable mx6_cubox-i target.
* Build tools and env with NO_SDL=1 to avoid complaining about missing
sdl-config.
* Remove mips target dbau1100, an old platform with no testers.
* Swich qemu_mips target to install u-boot.bin, which is what is
actually needed by qemu.
* Add patch to Set DCDC1 DDR3 to 1.35V for Beaglebone Black. Thanks to
Robert Nelson for the patch.
[ Ian Campbell ]
* Add patch to add u-boot.kwb to "make all" on Kirkwood platforms.
* Build tools out-of-tree too so as not to dirty the source used for the
actual platforms (Closes: #763024).
* Add patch to initialize scsi before trying scsi disks in
config_distro_bootcmd (Closes: #764069).
-- Vagrant Cascadian <vagrant@debian.org> Mon, 06 Oct 2014 16:58:04 -0700
u-boot (2014.10~rc2+dfsg1-2~exp1) experimental; urgency=medium
* Split u-boot package into u-boot-imx, u-boot-omap and u-boot-sunxi
packages on armhf.
* debian/targets:
- Enable A10-OLinuXino-Lime target.
- Enable Cubieboard2 and Cubieboard2_FEL targets (Closes: #762383).
- Enable A20-OLinuXino-LIME target.
- Disable mx6_cubox-i
- Disable efikamx and efikasb.
* debian/patches:
- Add patch from upstream to support A20-OLinuXino-LIME.
- Disable patches for cubox-i.
* debian/rules:
- Remove excess conditional architecture check, drop build-dep on
dctrl-tools.
- Remove executable bit from u-boot targets.
* Updated lintian overrides.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 22 Sep 2014 18:30:12 -0500
u-boot (2014.10~rc2+dfsg1-1) experimental; urgency=medium
* New upstream release candidate.
* Update debian/patches:
- Remove Cubieboard and Cubietruck patches, applied upstream.
- Remove kerma-sheevaplug-mvsdio patch, applied upstream.
- Update openrd-mmc patch, partially applied upstream.
- Add patch to workaround failure when building env tools.
* [armhf] Add Bananapi target.
* debian/rules:
- Install fw_printenv and fw_setenv symlink in platform-specific dir.
- Create include/config/auto.conf to allow tools-only target to build.
- Update to use defconfig target rather than config target.
* debian/copyright:
- Update Files-Excluded as some files were removed upstream.
* Updated lintian overrides.
-- Vagrant Cascadian <vagrant@debian.org> Wed, 03 Sep 2014 23:28:59 -0700
u-boot (2014.07+dfsg1-2) unstable; urgency=medium
[ Steve Langasek ]
* Rebase cubox-i patches on 2014.07 and re-enable the target.
[ Vagrant Cascadian ]
* Switch to debhelper 9 with executable .install files.
* Remove the efikamx and efikasb targets.
-- Vagrant Cascadian <vagrant@debian.org> Sun, 14 Sep 2014 23:01:50 -0500
u-boot (2014.07+dfsg1-1) unstable; urgency=medium
* New upstream version.
* [armhf] Temporarily disable cubox-i target, which needs re-working for
new upstream version.
* Refresh Cubietruck and Cubieboard patches.
-- Vagrant Cascadian <vagrant@debian.org> Thu, 28 Aug 2014 12:22:06 -0700
u-boot (2014.07~rc4+dfsg1-1) experimental; urgency=medium
* New upstream release candidate.
* Updated patches for sheevaplug MMC and SATA support.
* Updated openrd patches to use MMC driver.
-- Vagrant Cascadian <vagrant@debian.org> Sat, 12 Jul 2014 17:24:51 -0700
u-boot (2014.04+dfsg1-3) unstable; urgency=medium
* Add patch for mx53loco that enables support for ext4, the "load" command,
and using bootz with raw initrds.
* Remove ZUMA platform and drop powerpc from u-boot architectures
(Closes: #754610).
-- Vagrant Cascadian <vagrant@debian.org> Mon, 28 Jul 2014 15:30:26 -0700
u-boot (2014.04+dfsg1-2) unstable; urgency=medium
* Enable udoo_quad target, with patch improving the udoo_quad boot
environment. Thanks to Michael Fladischer! (Closes: #753376).
* Enable Cubieboard target and patches.
* Update lintian overrides.
-- Vagrant Cascadian <vagrant@debian.org> Wed, 09 Jul 2014 12:37:12 -0700
u-boot (2014.04+dfsg1-1) unstable; urgency=medium
[ Vagrant Cascadian ]
* Repack upstream tarball to remove files containing firmware without
sources (Closes: #750912).
* Add patches for Cubietruck from upstream.
* Add Cubietruck and Cubietruck_FEL targets (Closes: #750473).
* Add support for bootscripts to BeagleBone Black.
- Support loading files from either first or second partition.
* Modified wandboard patches:
- Add support for bootscripts.
- Support both fat and ext filesystems by consistantly using the "load"
command.
- Try loading bootscript from /boot/ as a fallback if not found in /.
* Update debian/copyright to use copyright format 1.0.
- Document which files are removed in debian/copyright.
* Update debian/watch to handle +dfsg version.
* Update lintian overrides:
- Ignore 'u-boot: statically-linked-binary'.
- Include new u-boot targets.
[ Andreas Henriksson ]
* Add patches for sunxi AHCI driver (Cubietruck) (Closes: #750473).
-- Vagrant Cascadian <vagrant@debian.org> Sun, 15 Jun 2014 21:03:40 -0700
u-boot (2014.04-2) unstable; urgency=medium
* Fix FTBFS on powerpc by not setting CROSS_COMPILE when empty.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 26 May 2014 11:32:49 -0700
u-boot (2014.04-1) unstable; urgency=low
[ Steve Langasek ]
* Patches taken from https://github.com/rabeeh/u-boot-imx6.git to support
the SolidRun CuBox-i series:
- debian/patches/spl-sata-support.diff:
Add support for SATA in SPL mode
- debian/patches/imx6-spl-support.diff:
Add support for SPL on i.MX6-based systems
- debian/patches/cubox-support.diff, tools/logos/solidrun.bmp:
Add support for the CuBox-i.
* Build the mx6_cubox-i target (Closes: #741127).
[ Vagrant Cascadian ]
* Add Nokia nokia_rx51 (n900) to targets to build.
- Patch n900 build to support bootz and raw initrds.
* debian/rules: Fix building of targets for v2014.04.
- Move fw_printenv creation into board-specific targets.
- Build target "tools-only".
- Drop special-casing of MLO, add MLO to debian/targets.
* debian/patches/cubox-i-raw-initrd.diff:
- Patch to support raw initrd on cubox-i.
* debian/watch: Use http.
* debian/control: Bump Standards-Version to 3.9.5, no changes needed.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 20 May 2014 10:04:56 -0700
u-boot (2014.01-2) unstable; urgency=medium
* Set Maintainer to Vagrant Cascadian (Closes: #738446).
* Remove Micah Anderson from uploaders.
* Add Clint Adams <clint@debian.org> to uploaders.
* Use grep-dctrl to pull architecture list from debian/control, rather than
hardcoding architectures in debian/rules.
* u-boot-tools: Set architecture to linux-any (Closes: #730833).
* Build raspberry pi (rpi_b) image on armel.
- Patch to to enable EXT2/EXT4 support and raw initrds.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 04 Mar 2014 14:13:22 -0800
u-boot (2014.01-1) unstable; urgency=low
* New upstream version.
* Updated patches.
* debian/watch: Update to catch -rc versions.
* debian/control: Update Vcs-* headers.
* u-boot-tools: Strip comment sections from mkimage and fw_printenv.
-- Vagrant Cascadian <vagrant@debian.org> Tue, 11 Feb 2014 15:11:47 -0800
u-boot (2013.10-3) unstable; urgency=low
* Move build of dbau1100 from mipsel to mips, which fixes FTBFS on mipsel,
due to dbau1100 being big-endian.
* Disable mipsel builds of u-boot, as it no longer has any targets.
* Add patch to specify default mmc partition to use when loading uEnv.txt
on BeagleBone Black.
* Add patch to support raw initrds on BeagleBone Black.
* Mark u-boot-tools as Multi-Arch: foreign.
* Mark u-boot as Multi-Arch: same.
* Update lintian overrides with list of current platforms.
-- Vagrant Cascadian <vagrant@debian.org> Sun, 17 Nov 2013 00:09:32 -0800
u-boot (2013.10-2) unstable; urgency=low
* debian/rules:
- Switch back to explicitly building the specified target.
- Allow building multiple targets per platform.
* debian/targets:
- Build the spl/u-boot-spl.bin target on several armhf platforms, which
generates the MLO file.
-- Vagrant Cascadian <vagrant@debian.org> Mon, 21 Oct 2013 11:33:01 -0700
u-boot (2013.10-1) unstable; urgency=low
* New upstream version (Closes: #667680, #726699).
- Update mipsel-native-endianness.diff
* debian/rules:
- Remove various tools/* files on clean target.
- Build each platform target and install MLO file if present.
(Closes: #687562).
- Support parallel builds using DEB_BUILD_OPTIONS=parallel=N.
* Enable BeagleBone Black and Wandboard platforms.
* Add patch to support uEnv.txt and directly loading zimage for Wandboard.
* Include env configs u-boot-tools examples (Closes: #631659, #636214).
* Only build u-boot on architectures which generate images (Closes: #635050).
* Drop i386 builds of u-boot, as the only target (eNET) was removed upstream.
* debian/control: Add myself to uploaders.
-- Vagrant Cascadian <vagrant@debian.org> Sun, 20 Oct 2013 10:23:55 -0700
u-boot (2013.01.01-4) unstable; urgency=low
* Upload to unstable.
* Drop transitional packages uboot-envtools and uboot-mkimage.
-- Clint Adams <clint@debian.org> Thu, 09 May 2013 21:41:25 -0400
u-boot (2013.01.01-3) experimental; urgency=low
* Disable unnecessary JFFS2 on GuruPlug
* Disable MMC on GuruPlug, devices are not detected,
they show up as USB devices instead
-- Micah Anderson <micah@debian.org> Mon, 25 Mar 2013 22:56:32 -0400
u-boot (2013.01.01-2) experimental; urgency=low
* More properly enable MMC on GuruPlug.
* Use new Efika target names.
* Bump to Standards-Version 3.9.4.
-- Clint Adams <clint@debian.org> Sun, 24 Mar 2013 21:59:03 -0400
u-boot (2013.01.01-1) experimental; urgency=low
* New upstream version. closes: #699232.
- Drop strip-env-tools.diff (merged).
- Update kerma-sheevaplug-mvsdio.diff.
- Update mipsel-native-endianness.diff
* Enable CONFIG_SYS_MVFS and CONFIG_CMD_MMC for GuruPlug.
-- Clint Adams <clint@debian.org> Thu, 21 Mar 2013 14:21:33 -0400
u-boot (2012.04.01-2) unstable; urgency=low
* Remove code duplication in kerma-sheevaplug-mvsdio.diff.
closes: #674230.
-- Clint Adams <clint@debian.org> Thu, 31 May 2012 21:04:49 -0400
u-boot (2012.04.01-1) unstable; urgency=low
* New upstream version.
- Update mipsel-native-endianness.diff.
- Update no-error-on-set-but-unused-variables.diff (partially merged).
- Drop kirkwood_spi-irq_mask.diff (merged).
- Drop kirkwood-disable-l2c.diff (merged).
-- Clint Adams <clint@debian.org> Tue, 01 May 2012 18:07:19 -0400
u-boot (2011.12-3) unstable; urgency=low
[ Jonathan Nieder ]
* kirkwood: disable L2 cache before Linux boot; thanks to Ian Campbell.
closes: #658904
[ Loïc Minier ]
* Add patch to strip env tools; sent to upstream mailing-list.
-- Loïc Minier <lool@debian.org> Sun, 11 Mar 2012 16:12:50 +0100
u-boot (2011.12-2) unstable; urgency=low
[ Loïc Minier ]
* Build u-boot.imx for efikasb on armhf
[ Clint Adams ]
* Patch from Ian Campbell to fix Dreamplug breakage. closes: #655102.
-- Clint Adams <clint@debian.org> Sun, 08 Jan 2012 15:11:03 -0500
u-boot (2011.12-1) unstable; urgency=low
* New upstream version.
- Drop build-timestamp_autogenerated.h-without-config.patch (merged).
- Drop ublimage-NAND-block-size-isn-t-set-at-build-time.patch (merged).
- Update kerma-sheevaplug-mvsdio.diff
- Update mipsel-native-endianness.diff
- Drop dreamplug-v8.patch (merged).
-- Clint Adams <clint@debian.org> Mon, 02 Jan 2012 17:49:39 -0500
u-boot (2011.09-2) unstable; urgency=low
* Patch from Pino Toscano <pino@debian.org> to build on the Hurd.
closes: #648295.
* Drop gr_xc3s_1500 target.
* Add build-arch and build-indep targets to debian/rules.
-- Clint Adams <clint@debian.org> Tue, 15 Nov 2011 23:53:01 -0500
u-boot (2011.09-1) unstable; urgency=low
[ Hector Oron ]
* Enable MX53LOCO platform.
* Update lintian overrides.
[ Loïc Minier ]
* Fix FTBFS on amd64 and allow `make tools` to succeed without
config.
[ Clint Adams ]
* New upstream version.
- Update kerma-sheevaplug-mvsdio.diff.
- Drop panda-default-console.diff (refactored).
- Replace dreamplug patches with Jason's v8.
* Add Buffalo Linkstation Mini env config from Benjamin Cama.
-- Clint Adams <clint@debian.org> Fri, 30 Sep 2011 21:22:23 -0400
u-boot (2011.06-4) unstable; urgency=low
* Increase the USB non-bulk timeout by an order of magnitude.
May fix #635774.
-- Clint Adams <clint@debian.org> Sat, 06 Aug 2011 13:42:52 -0400
u-boot (2011.06-3) unstable; urgency=low
* Add DreamPlug support.
-- Clint Adams <clint@debian.org> Sun, 24 Jul 2011 09:35:32 -0400
u-boot (2011.06-2) unstable; urgency=low
* Use -Wno-error=unused-but-set-variable on i386.
-- Clint Adams <clint@debian.org> Sat, 02 Jul 2011 22:14:44 -0400
u-boot (2011.06-1) unstable; urgency=low
* New upstream version.
* Fix i386 and mipsel builds.
-- Clint Adams <clint@debian.org> Sat, 02 Jul 2011 19:25:28 -0400
u-boot (2011.06~rc3-1) unstable; urgency=low
* New upstream version.
-- Clint Adams <clint@debian.org> Sat, 02 Jul 2011 15:50:46 -0400
u-boot (2011.06~rc2-2) unstable; urgency=low
* Fix mipsel endianness problem again.
* Try building gr_xc3s_1500 on sparc.
-- Clint Adams <clint@debian.org> Sat, 18 Jun 2011 10:13:53 -0400
u-boot (2011.06~rc2-1) unstable; urgency=low
* New upstream version.
* Fix tools config selection.
-- Clint Adams <clint@debian.org> Tue, 14 Jun 2011 20:53:07 -0400
u-boot (2011.06~rc1-1) unstable; urgency=low
* New upstream version.
- Update mipsel-native-endianness.diff
- Drop Drop-config.h-include-in-tools-imximage.h.diff (merged).
- Drop openrd-client-and-ultimate.diff (merged).
- Update openrd-mmc.diff (formerly openrd-mmc-mtd-fat.diff).
- Drop eNET-monitor_flash_len.diff (merged).
- Update snapshot.commit to 2011.06-rc1.
- Use the first target for each arch to build the tools, or
fake it on the other architectures.
* Only build efikamx image on armhf.
-- Clint Adams <clint@debian.org> Sat, 21 May 2011 11:04:30 -0400
u-boot (2011.03-6) unstable; urgency=low
* Bump to Standards-Version 3.9.2.
* Tweak the u-boot-tools description.
* Drop igep0020, omap3_beagle, and omap4_panda targets from
armel; they are available on armhf.
-- Clint Adams <clint@debian.org> Tue, 26 Apr 2011 16:11:24 -0400
u-boot (2011.03-5) unstable; urgency=low
[ Sebastian Reichel ]
* Add Pandaboard target. closes: #624123
* New patch to change default console on Pandaboard.
-- Clint Adams <clint@debian.org> Mon, 25 Apr 2011 15:36:16 -0400
u-boot (2011.03-4) unstable; urgency=low
* Enable FAT, SD/MMC, MTD, JFFS, UBIFS support on OpenRD boards.
-- Clint Adams <clint@debian.org> Wed, 13 Apr 2011 18:05:36 -0400
u-boot (2011.03-3) unstable; urgency=low
* Actually pass the right arch_number for OpenRD-Ultimate.
-- Clint Adams <clint@debian.org> Tue, 12 Apr 2011 14:28:20 -0400
u-boot (2011.03-2) unstable; urgency=low
* Fix i386 FTBFS with eNET-monitor_flash_len.diff
* Add patch for OpenRD-Client and OpenRD-Ultimate.
* Drop openrd_base target and add openrd_ultimate target.
-- Clint Adams <clint@debian.org> Tue, 05 Apr 2011 15:56:43 -0400
u-boot (2011.03-1) unstable; urgency=low
[ Loïc Minier ]
* Only try to build env tools when Linux MTD headers are present.
closes: #619673.
[ Clint Adams ]
* New upstream version.
- Drop fix-definition-of-global_data-struct.diff (now upstream).
- Drop EfikaMX-switch-to-MACH_TYPE_MX51_EFIKAMX.diff (upstream now).
- Drop sh-sh7785lcr-Fix-out-of-tree-building.diff (upstream now).
- Drop MIPS-dbau1x00-Remove-unused-flash-driver-stub.diff (upstream now).
- Drop x86-Align-config.mk-and-linker-scripts-with-other-ar.diff
(upstream now).
- Update snapshot.commit to 2011.03
-- Clint Adams <clint@debian.org> Fri, 01 Apr 2011 10:30:46 -0400
u-boot (2011.03~rc1-4) experimental; urgency=low
* Add patch x86-Align-config.mk-and-linker-scripts-with-other-ar.
From upstream mailing-list; fixes x86 build (eNET).
-- Loïc Minier <lool@debian.org> Wed, 09 Feb 2011 14:51:01 +0100
u-boot (2011.03~rc1-3) experimental; urgency=low
* Add debian/source/local-options
- unapply-patches: avoids committing patched tree after a build
- abort-on-upstream-changes: avoids creating a debian-changes-* patch
when building from a dirty tree
* Add patch MIPS-dbau1x00-Remove-unused-flash-driver-stub,
from u-boot-mipsel.git 17a990b55008fd79636e4880d9d10b7172ca87ce and also
sent to the upstream mailing-list; fixes build of dbau1x00 board by
removing board/dbau1x00/flash.c entirely, and hence fixes the build of
u-boot on mipsel.
-- Loïc Minier <lool@debian.org> Tue, 08 Feb 2011 16:49:05 +0100
u-boot (2011.03~rc1-2) experimental; urgency=low
* New patch sh-sh7785lcr-Fix-out-of-tree-building; from upstream
e72f46787f44c1104a8df18511ab230b6072a1f0; fixes Debian sh4 build; thanks
Nobuhiro Iwamatsu; closes: #611873.
-- Loïc Minier <lool@debian.org> Mon, 07 Feb 2011 17:20:16 +0100
u-boot (2011.03~rc1-1) experimental; urgency=low
* dpkg-shlibdeps usr/bin/* rather than just mkimage.
* uboot-mkimage's Section is utils.
* Allow overriding CROSS_COMPILE.
* New upstream release candidate.
- Merge commit v2011.03-rc1
- Update snapshot.commit to 2011.03-rc1
* Add EfikaMX support.
- Add patch EfikaMX-switch-to-MACH_TYPE_MX51_EFIKAMX from the upstream
mailing-list; fixes build on EfikaMX (EfikaMX: switch to
MACH_TYPE_MX51_EFIKAMX)
- Add patch Drop-config.h-include-in-tools-imximage.h from the upstream
mailing-list; fixes tools-all build of imximage.c.
- Build u-boot.imx for efikamx on armel.
* Refresh patch kerma-sheevaplug-mvsdio to fix fuzz.
-- Loïc Minier <lool@debian.org> Thu, 03 Feb 2011 13:13:14 +0100
u-boot (2010.12-2) unstable; urgency=low
* Avoid calling dpkg-architecture if DEB_HOST_ARCH is set.
* Misc refactoring of debian/rules.
- Split per architecture list of platform and targets into
debian/targets.
- Actually use INSTALL_FILE/INSTALL_DIR/INSTALL_PROGRAM.
- Add support for cross-builds; these will currently lack tools.
- Build board-specific u-boot files in a separate build dir from the
generic tools
* Fix handling of -Wl,foo LDFLAGS; the upstream build passes LDFLAGS
directly to ld instead of calling gcc for linking; so instead of passing
-Wl,foo in LDFLAGS as in automake builds, one should set LDFLAGS to foo
directly; add a snippet to strip -Wl, from LDFLAGS; alternatively, we
could do as in other special packages like the kernel and simply unset
LDFLAGS entirely; closes: #607613.
* Install and compress upstream mkimage manpage; based on a patch by
Marcin Juszkiewicz.
* Add a dummy uboot-mkimage package for upgrades from squeeze; based on a
patch by Marcin Juszkiewicz; closes: #607618.
* Add new patch, fix-definition-of-global_data-struct, from the upstream
x86 maintainer; fixes build of eNET board which breaks u-boot's build on
i386; closes: #608801.
* Workaround an upstream bug in distclean by removing include/asm/proc and
/arch explicitly for now; patch was sent upstream.
* Don't repeat Section: in binary package.
* Add myself to Uploaders.
* Split tools in u-boot-tools package.
* Drop board-specific tools; these are too dangerous; only ship mkimage for
now.
* Add igep0020 and omap3_beagle builds on armel
* Update snapshot.commit to the 2010.12 release contents; this avoids a
pointless diff with the tarball.
-- Loïc Minier <lool@debian.org> Mon, 17 Jan 2011 22:43:41 +0100
u-boot (2010.12-1) unstable; urgency=low
* New upstream version.
* Install more tools in preparation for splitting off a
u-boot-tools binary package.
-- Clint Adams <clint@gnu.org> Tue, 28 Dec 2010 17:03:44 -0500
u-boot (2010.12~rc3-1) unstable; urgency=low
* New upstream release candidate.
* Add dockstar target.
-- Clint Adams <clint@gnu.org> Sun, 19 Dec 2010 09:45:42 -0500
u-boot (2010.12~rc2-1) unstable; urgency=low
* New upstream release candidate.
* Add openrd_base target.
-- Clint Adams <clint@gnu.org> Sat, 04 Dec 2010 15:32:38 -0500
u-boot (2010.09-2) unstable; urgency=low
* Enable ext2 commands on GuruPlug.
* Ship ELF files (for loading into RAM with OpenOCD).
-- Clint Adams <clint@gnu.org> Sat, 20 Nov 2010 18:20:40 -0500
u-boot (2010.09-1) unstable; urgency=low
* New upstream release.
-- Clint Adams <schizo@debian.org> Wed, 29 Sep 2010 00:06:25 -0400
u-boot (2010.09~rc2-1) unstable; urgency=low
* New upstrem release candidate.
-- Clint Adams <schizo@debian.org> Sun, 19 Sep 2010 14:20:52 -0400
u-boot (2010.09~rc1-2) unstable; urgency=low
* Add patch from Gérald Kerma to add Sheevaplug mvsata support.
* Add patch from Gérald Kerma to add Sheevaplug mvsdio support.
-- Clint Adams <schizo@debian.org> Sun, 12 Sep 2010 11:48:22 -0400
u-boot (2010.09~rc1-1) unstable; urgency=low
* New upstream release candidate.
- Drop guruplug-miiphy_reset.diff.
- Update mipsel-native-endianness.diff.
- Drop sh4-native-compile.diff.
* Bump to Standards-Version 3.9.1.
-- Clint Adams <schizo@debian.org> Sat, 11 Sep 2010 00:43:04 -0400
u-boot (2010.06-1) unstable; urgency=low
* New upstream version.
-- Clint Adams <schizo@debian.org> Sat, 03 Jul 2010 13:49:46 -0400
u-boot (2010.06~rc3-1) unstable; urgency=low
* New upstream version.
* Fix sh4-native-compile.diff to not break sh64, thanks to Paul
Mundt.
* Ship mkimage, conflict/replace uboot-mkimage, build on all
architectures.
-- Clint Adams <schizo@debian.org> Fri, 25 Jun 2010 14:49:06 -0400
u-boot (2010.06~rc2-1) unstable; urgency=medium
* Add sh4-native-compile.diff from Aurelien Jarno. closes: #586026.
* New upstream version.
- Drop marvell-machtypes.diff.
-- Clint Adams <schizo@debian.org> Tue, 15 Jun 2010 21:37:26 -0400
u-boot (2010.06~rc1-6) unstable; urgency=medium
* Add guruplug-miiphy_reset.diff.
* Clean between targets. closes: #585570.
-- Clint Adams <schizo@debian.org> Fri, 11 Jun 2010 21:57:31 -0400
u-boot (2010.06~rc1-5) unstable; urgency=low
* Replace mipsel-native-endianness.diff with patch adapted
from a 2008 mailing list posting by Shinya Kuribayashi.
-- Clint Adams <schizo@debian.org> Fri, 04 Jun 2010 20:08:27 -0400
u-boot (2010.06~rc1-4) unstable; urgency=low
* Add r2dplus target for sh4.
* mipsel-native-endianness.diff: don't force endianness on mips/mipsel
-- Clint Adams <schizo@debian.org> Thu, 03 Jun 2010 19:32:50 -0400
u-boot (2010.06~rc1-3) unstable; urgency=low
* Fix mipsel typo.
* Apply patch from Nobuhiro Iwamatsu to change sh4 target board
from espt to sh7785lcr_32bit. closes: #584192.
-- Clint Adams <schizo@debian.org> Wed, 02 Jun 2010 08:25:04 -0400
u-boot (2010.06~rc1-2) unstable; urgency=low
* Produce u-boot.bin on i386.
* Switch mipsel target to AMD DBAu1100.
* Add marvell-machtypes.diff.
-- Clint Adams <schizo@debian.org> Mon, 31 May 2010 22:09:29 -0400
u-boot (2010.06~rc1-1) unstable; urgency=low
* Add Vcs-Git and Vcs-Browser headers.
* Add GuruPlug target (armel).
* Switch mipsel target to TB0229.
* Add watch file.
* Update README.Debian for SheevaPlug and GuruPlug.
-- Clint Adams <schizo@debian.org> Mon, 31 May 2010 19:29:40 -0400
u-boot (2010.03-1) unstable; urgency=low
* Initial packaging. closes: #583605.
-- Clint Adams <schizo@debian.org> Fri, 28 May 2010 16:20:39 -0400
|